Skip to content

Commit 7c194e3

Browse files
refactor(tests): remove concurrency
1 parent 682ec60 commit 7c194e3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const builtinsCases = await readdir(new URL('./builtins', import.meta.url));
2525
suite('Builtins', () => {
2626
for (const filename of builtinsCases) {
2727
const name = filename.slice(0, -3);
28-
test.concurrent(name, async () => {
28+
test(name, async () => {
2929
const {
3030
source,
3131
test: runTest,
@@ -137,7 +137,7 @@ suite('Builtins', () => {
137137
const bindingsCases = await readdir(new URL('./cases', import.meta.url));
138138
suite('Bindings', () => {
139139
for (const name of bindingsCases) {
140-
test.concurrent(name, async () => {
140+
test(name, async () => {
141141
const source = await readFile(
142142
new URL(`./cases/${name}/source.js`, import.meta.url),
143143
'utf8',

0 commit comments

Comments
 (0)