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:
192
192
run : npm install
193
193
194
194
- name : Test
195
- # run: npm run test:${{matrix.build-type}} -- --maxWorkers 4 --minWorkers 2 --maxConcurrency 2
196
195
run : npm run test:${{matrix.build-type}}
197
196
198
197
test-example :
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ suite('Bindings', async () => {
18
18
const bindingsCases = await readdir ( new URL ( './cases' , import . meta. url ) ) ;
19
19
20
20
for ( const name of bindingsCases ) {
21
- test ( name , buildDefaultTestOpts ( ) , async ( ) => {
21
+ test . concurrent ( name , buildDefaultTestOpts ( ) , async ( ) => {
22
22
const source = await readFile (
23
23
new URL ( `./cases/${ name } /source.js` , import . meta. url ) ,
24
24
'utf8' ,
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ suite('Builtins', async () => {
20
20
21
21
for ( const filename of builtins ) {
22
22
const name = filename . slice ( 0 , - 3 ) ;
23
- test ( name , buildDefaultTestOpts ( ) , async ( ) => {
23
+ test . concurrent ( name , buildDefaultTestOpts ( ) , async ( ) => {
24
24
const {
25
25
source,
26
26
test : runTest ,
You can’t perform that action at this time.
0 commit comments