diff --git a/bigbluebutton-html5/tests/puppeteer/presentation.test.js b/bigbluebutton-html5/tests/puppeteer/presentation.test.js
index 562c1fce4101aa616c3faae6f6d3e1af8dbde4b4..45d9bc751774707991e403d258c28e01c42165dc 100644
--- a/bigbluebutton-html5/tests/puppeteer/presentation.test.js
+++ b/bigbluebutton-html5/tests/puppeteer/presentation.test.js
@@ -3,11 +3,16 @@ const Slide = require('./presentation/slide');
 const Upload = require('./presentation/upload');
 
 describe('Presentation', () => {
+  beforeEach(() => {
+    jest.setTimeout(30000);
+  });
+
   test('Skip slide', async () => {
     const test = new Slide();
     let response;
     try {
       await test.init(Page.getArgs());
+      await test.closeAudioModal();
       response = await test.test();
     } catch (e) {
       console.log(e);
@@ -22,6 +27,7 @@ describe('Presentation', () => {
     let response;
     try {
       await test.init(Page.getArgs());
+      await test.closeAudioModal();
       response = await test.test();
     } catch (e) {
       console.log(e);