forked from lit/lit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweb-test-runner.config.js
53 lines (51 loc) · 1.41 KB
/
web-test-runner.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/**
* @license
* Copyright 2023 Google LLC
* SPDX-License-Identifier: BSD-3-Clause
*/
import {playwrightLauncher} from '@web/test-runner-playwright';
import {rollupBundlePlugin} from '@web/dev-server-rollup';
import commonjs from '@rollup/plugin-commonjs';
import nodeResolve from '@rollup/plugin-node-resolve';
import replace from '@rollup/plugin-replace';
// https://modern-web.dev/docs/test-runner/cli-and-configuration/
export default {
rootDir: '.',
nodeResolve: true,
browsers: [
playwrightLauncher({product: 'chromium'}),
playwrightLauncher({product: 'firefox'}),
playwrightLauncher({product: 'webkit'}),
],
testFramework: {
// https://mochajs.org/api/mocha
config: {
ui: 'tdd',
timeout: '60000',
},
},
plugins: [
// Bundle test entrypoints for React.
rollupBundlePlugin({
rollupConfig: {
input: [
'development/test/create-component_test.js',
'development/test/use-controller_test.js',
],
plugins: [
commonjs(),
nodeResolve(),
replace({
preventAssignment: false,
'process.env.NODE_ENV': JSON.stringify('development'),
}),
],
onwarn(warning, warn) {
// Suppress warning due to TS output's `this && this.__decorate`.
if (warning.code === 'THIS_IS_UNDEFINED') return;
warn(warning);
},
},
}),
],
};