mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2025-02-16 17:25:58 +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,
|
|
},
|
|
},
|
|
};
|