Skip to content

Commit 3dbbdf9

Browse files
committed
Move WTR concurrency config out of groups field. (...)
Items in `groups` are not able to override all fields of the outer config object, only a very limited subset.[^1] [^1]: https://github.com/modernweb-dev/web/blob/6c5893cc79c91e82f9aec35d3011c6e33ce878cc/packages/test-runner-core/src/config/TestRunnerGroupConfig.ts
1 parent b05baa7 commit 3dbbdf9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/tests/web-test-runner.config.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,8 @@ module.exports = {
138138
files: ['custom-elements/html/**/*.test.(js|html)'],
139139
rootDir: '../..',
140140
nodeResolve: true,
141+
concurrency: 1,
142+
concurrentBrowsers: 1,
141143
plugins: [compileJSPlugin()],
142144
groups: [
143145
{
@@ -150,8 +152,6 @@ module.exports = {
150152
},
151153
{
152154
name: 'sauce',
153-
concurrency: 1,
154-
concurrentBrowsers: 1,
155155
// This is intentionally a getter so that browser launchers are only
156156
// created on demand.
157157
get browsers() {

0 commit comments

Comments
 (0)