mirror of
https://github.com/streetwriters/notesnook.git
synced 2025-12-23 23:19:40 +01:00
16 lines
295 B
JavaScript
16 lines
295 B
JavaScript
|
|
const IS_CI = !!process.env.CI;
|
||
|
|
|
||
|
|
module.exports = {
|
||
|
|
launchOptions: {
|
||
|
|
headless: IS_CI,
|
||
|
|
},
|
||
|
|
serverOptions: {
|
||
|
|
command: `yarn debug`,
|
||
|
|
port: 3000,
|
||
|
|
launchTimeout: 10000,
|
||
|
|
debug: true,
|
||
|
|
},
|
||
|
|
browsers: IS_CI ? ["firefox", "chromium", "webkit"] : ["chromium"],
|
||
|
|
devices: [],
|
||
|
|
};
|