-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathweb-test-runner.config.mjs
More file actions
36 lines (29 loc) · 1001 Bytes
/
web-test-runner.config.mjs
File metadata and controls
36 lines (29 loc) · 1001 Bytes
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
import { fileURLToPath } from 'node:url';
import { playwrightLauncher } from '@web/test-runner-playwright';
import { esbuildPlugin } from '@web/dev-server-esbuild';
export default /** @type {import("@web/test-runner").TestRunnerConfig} */ ({
files: ['src/**/*.spec.ts'],
browsers: [playwrightLauncher({ product: 'chromium', headless: true })],
/** Compile JS for older browsers. Requires @web/dev-server-esbuild plugin */
// esbuildTarget: 'auto',
/** Configure bare import resolve plugin */
nodeResolve: {
exportConditions: ['browser', 'production'],
},
coverageConfig: {
exclude: ['node_modules/**/*', '**/themes/**'],
},
testFramework: {
config: {
timeout: 3000,
},
},
plugins: [
esbuildPlugin({
ts: true,
tsconfig: fileURLToPath(new URL('./tsconfig.json', import.meta.url)),
}),
],
// See documentation for all available options
// https://modern-web.dev/docs/test-runner/cli-and-configuration/#configuration-file
});