blob: 34a9d874d8a873f2c0f58751ece918471798b533 [file] [log] [blame]
import { chromeLauncher } from '@web/test-runner-chrome';
export default {
nodeResolve: true,
browsers: [
chromeLauncher({
launchOptions: {
// CI runs as root in a container, so we need --no-sandbox
args: process.env.ON_CI ? ['--no-sandbox'] : undefined,
},
}),
],
};