We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 682ec60 commit 7c194e3Copy full SHA for 7c194e3
test/test.js
@@ -25,7 +25,7 @@ const builtinsCases = await readdir(new URL('./builtins', import.meta.url));
25
suite('Builtins', () => {
26
for (const filename of builtinsCases) {
27
const name = filename.slice(0, -3);
28
- test.concurrent(name, async () => {
+ test(name, async () => {
29
const {
30
source,
31
test: runTest,
@@ -137,7 +137,7 @@ suite('Builtins', () => {
137
const bindingsCases = await readdir(new URL('./cases', import.meta.url));
138
suite('Bindings', () => {
139
for (const name of bindingsCases) {
140
141
const source = await readFile(
142
new URL(`./cases/${name}/source.js`, import.meta.url),
143
'utf8',
0 commit comments