mirror of
https://github.com/qlik-oss/nebula.js.git
synced 2026-05-24 16:00:16 -04:00
* test: rendering test goes playwrigt * test: update cci * test: update cci * test: update cci * test: more playwright * test: update config * test: update config * test: update config * test: update baseline
27 lines
623 B
JavaScript
27 lines
623 B
JavaScript
const config = {
|
|
reporter: [
|
|
['dot'],
|
|
['html', { outputFolder: './reports/html' }],
|
|
['junit', { outputFile: './test/rendering/reports/xml/report.xml' }],
|
|
],
|
|
testDir: './',
|
|
forbidOnly: !!process.env.CI,
|
|
timeout: 60000,
|
|
expect: {
|
|
toMatchSnapshot: { threshold: 0.00025 },
|
|
timeout: 30000,
|
|
},
|
|
workers: process.env.CI ? 1 : undefined,
|
|
use: {
|
|
browserName: 'chromium',
|
|
actionTimeout: 30000,
|
|
headless: true,
|
|
viewport: { width: 1280, height: 720 },
|
|
ignoreHTTPSErrors: true,
|
|
video: 'retain-on-failure',
|
|
screenshot: 'only-on-failure',
|
|
},
|
|
};
|
|
|
|
module.exports = config;
|