bigbluebutton-Github/bigbluebutton-tests/puppeteer/sharednotes/sharednotes.obj.js

38 lines
1.2 KiB
JavaScript
Raw Normal View History

const Page = require('../core/page');
const SharedNotes = require('./sharednotes');
2020-10-09 03:25:35 +08:00
const { toMatchImageSnapshot } = require('jest-image-snapshot');
const { MAX_SHARED_NOTES_TEST_TIMEOUT } = require('../core/constants'); // core constants (Timeouts vars imported)
2020-10-09 03:25:35 +08:00
expect.extend({ toMatchImageSnapshot });
const sharedNotesTest = () => {
beforeEach(() => {
jest.setTimeout(MAX_SHARED_NOTES_TEST_TIMEOUT);
});
test('Open Shared notes', async () => {
const test = new SharedNotes();
let response;
2020-10-09 03:25:35 +08:00
let screenshot;
try {
const testName = 'openSharedNotes';
2021-09-30 20:36:08 +08:00
await test.modPage1.logger('begin of ', testName);
await test.init(testName);
await test.modPage1.startRecording(testName);
await test.userPage1.startRecording(testName);
response = await test.test();
2021-09-30 20:36:08 +08:00
await test.modPage1.logger('end of ', testName);
await test.modPage1.stopRecording();
await test.userPage1.stopRecording();
screenshot = await test.modPage1.page.screenshot();
2021-08-26 22:13:18 +08:00
} catch (err) {
2021-09-30 20:36:08 +08:00
await test.modPage1.logger(err);
} finally {
await test.close();
}
expect(response).toBe(true);
2021-10-01 02:45:59 +08:00
Page.checkRegression(0.1, screenshot);
});
};
2021-09-30 20:36:08 +08:00
module.exports = exports = sharedNotesTest;