Skip to content

Commit 7b57b16

Browse files
committed
Fix tests by running serially
1 parent dc0b65f commit 7b57b16

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

web-test-runner.config.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,7 @@ import {esbuildPlugin} from '@web/dev-server-esbuild'
33
export default {
44
files: ['test/*'],
55
nodeResolve: true,
6-
plugins: [esbuildPlugin({ts: true, target: 'es2020'})]
6+
concurrency: 1,
7+
plugins: [esbuildPlugin({ts: true, target: 'es2020'})],
8+
filterBrowserLogs: log => !log.args.some(arg => typeof arg === 'string' && arg.includes('Lit is in dev mode'))
79
}

0 commit comments

Comments
 (0)