File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ suite('Bindings', async () => {
1717 const bindingsCases = await readdir ( new URL ( './cases' , import . meta. url ) ) ;
1818
1919 for ( const name of bindingsCases ) {
20- test . concurrent ( name , async ( ) => {
20+ test ( name , async ( ) => {
2121 const source = await readFile (
2222 new URL ( `./cases/${ name } /source.js` , import . meta. url ) ,
2323 'utf8' ,
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ suite('Builtins', async () => {
1919
2020 for ( const filename of builtins ) {
2121 const name = filename . slice ( 0 , - 3 ) ;
22- test . concurrent ( name , async ( ) => {
22+ test ( name , async ( ) => {
2323 const {
2424 source,
2525 test : runTest ,
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import { availableParallelism } from 'node:os';
22
33import { defineConfig } from 'vitest/config' ;
44
5- const DEFAULT_TIMEOUT_MS = process . env . CI ? 240_000 : 120_000 ;
5+ const DEFAULT_TIMEOUT_MS = 120_000 ;
66
77const REPORTERS = process . env . GITHUB_ACTIONS
88 ? [ 'verbose' , 'github-actions' ]
You can’t perform that action at this time.
0 commit comments