bigbluebutton-Github/bigbluebutton-html5/tests/puppeteer/virtualizedlist.obj.js
2020-10-08 16:32:00 -03:00

30 lines
871 B
JavaScript

const VirtualizedList = require('./virtualizedlist/virtualize');
const { toMatchImageSnapshot } = require('jest-image-snapshot');
expect.extend({ toMatchImageSnapshot });
const virtualizedListTest = () => {
test('Virtualized Users List', async () => {
const test = new VirtualizedList();
let response;
let screenshot;
try {
await test.init();
response = await test.test();
screenshot = await test.page1.page.screenshot();
} catch (e) {
console.log(e);
} finally {
await test.close();
}
expect(response).toBe(true);
if (process.env.REGRESSION_TESTING === 'true') {
expect(screenshot).toMatchImageSnapshot({
failureThreshold: 0.005,
failureThresholdType: 'percent',
});
}
}, parseInt(process.env.TEST_DURATION_TIME));
};
module.exports = exports = virtualizedListTest;