mirror of
https://github.com/streetwriters/notesnook.git
synced 2025-12-22 22:49:45 +01:00
16 lines
303 B
JavaScript
16 lines
303 B
JavaScript
const IS_CI = true; // !!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"] : ["firefox"],
|
|
devices: [],
|
|
};
|