File tree Expand file tree Collapse file tree 3 files changed +2
-3
lines changed
Expand file tree Collapse file tree 3 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -192,7 +192,6 @@ jobs:
192192 run : npm install
193193
194194 - name : Test
195- # run: npm run test:${{matrix.build-type}} -- --maxWorkers 4 --minWorkers 2 --maxConcurrency 2
196195 run : npm run test:${{matrix.build-type}}
197196
198197 test-example :
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ suite('Bindings', async () => {
1818 const bindingsCases = await readdir ( new URL ( './cases' , import . meta. url ) ) ;
1919
2020 for ( const name of bindingsCases ) {
21- test ( name , buildDefaultTestOpts ( ) , async ( ) => {
21+ test . concurrent ( name , buildDefaultTestOpts ( ) , async ( ) => {
2222 const source = await readFile (
2323 new URL ( `./cases/${ name } /source.js` , import . meta. url ) ,
2424 'utf8' ,
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ suite('Builtins', async () => {
2020
2121 for ( const filename of builtins ) {
2222 const name = filename . slice ( 0 , - 3 ) ;
23- test ( name , buildDefaultTestOpts ( ) , async ( ) => {
23+ test . concurrent ( name , buildDefaultTestOpts ( ) , async ( ) => {
2424 const {
2525 source,
2626 test : runTest ,
You can’t perform that action at this time.
0 commit comments