-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathweb-test-runner.config.mjs
More file actions
33 lines (24 loc) · 976 Bytes
/
web-test-runner.config.mjs
File metadata and controls
33 lines (24 loc) · 976 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
// import { playwrightLauncher } from '@web/test-runner-playwright';
import {esbuildPlugin} from '@web/dev-server-esbuild'
export default /** @type {import("@web/test-runner").TestRunnerConfig} */ ({
/** Test files to run */
files: ['**/*.spec.ts','!node_modules/**/*.spec.ts'],
plugins: [esbuildPlugin({ ts: true })],
/** Resolve bare module imports */
nodeResolve: {
exportConditions: ['browser', 'development'],
},
/** Compile JS for older browsers. Requires @web/dev-server-esbuild plugin */
// esbuildTarget: 'auto',
/** Amount of browsers to run concurrently */
// concurrentBrowsers: 2,
/** Amount of test files per browser to test concurrently */
// concurrency: 1,
/** Browsers to run tests on */
// browsers: [
// playwrightLauncher({ product: 'chromium' }),
// playwrightLauncher({ product: 'firefox' }),
// playwrightLauncher({ product: 'webkit' }),
// ],
// See documentation for all available options
});