Skip to content

Commit 587e905

Browse files
committed
test: fix flaky wpt/test-timers
Change the wpt tests to not run in parallel in our Python test runner. On my local machine, this changes the time needed to run the suite from about 2 seconds to about 5 seconds, but it makes the test suite much more reliable. Fixes: nodejs#37672
1 parent 38f3238 commit 587e905

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/wpt/testcfg.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
import testpy
44

55
def GetConfiguration(context, root):
6-
return testpy.ParallelTestConfiguration(context, root, 'wpt')
6+
return testpy.SimpleTestConfiguration(context, root, 'wpt')

0 commit comments

Comments
 (0)