mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2024-11-25 15:06:55 +00:00
18 lines
276 B
JavaScript
18 lines
276 B
JavaScript
|
const isCI = require("is-ci");
|
||
|
|
||
|
module.exports = {
|
||
|
exitOnPageError: false,
|
||
|
launchOptions: {
|
||
|
headless: isCI,
|
||
|
slowMo: 10,
|
||
|
timeout: 60000,
|
||
|
},
|
||
|
contextOptions: {
|
||
|
ignoreHTTPSErrors: true,
|
||
|
viewport: {
|
||
|
width: 1920,
|
||
|
height: 1080,
|
||
|
},
|
||
|
},
|
||
|
};
|