open-nomad/ui/testem.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
899 B
JavaScript
Raw Normal View History

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
'use strict';
const config = {
2017-09-19 14:47:10 +00:00
test_page: 'tests/index.html?hidepassed',
disable_watching: true,
launch_in_ci: ['Chrome'],
2017-09-19 14:47:10 +00:00
launch_in_dev: ['Chrome'],
browser_start_timeout: 120,
2022-01-26 18:06:56 +00:00
parallel: -1,
browser_args: {
// New format in testem/master, but not in a release yet
// Chrome: {
// ci: ['--headless', '--disable-gpu', '--remote-debugging-port=9222', '--window-size=1440,900'],
// },
Chrome: {
2019-03-15 20:26:18 +00:00
ci: [
// --no-sandbox is needed when running Chrome inside a container
process.env.CI ? '--no-sandbox' : null,
'--headless',
2019-03-15 20:26:18 +00:00
'--disable-dev-shm-usage',
'--disable-software-rasterizer',
'--mute-audio',
'--remote-debugging-port=0',
2021-12-28 14:45:20 +00:00
'--window-size=1440,900',
].filter(Boolean),
},
},
2017-09-19 14:47:10 +00:00
};
module.exports = config;