Skip to content

Commit 4f36c75

Browse files
test(jco): run browser tests serially
1 parent 6095c2e commit 4f36c75

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

packages/jco-transpile/test/browser/general.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,11 +107,11 @@ suite('Browser', () => {
107107
} catch {}
108108
});
109109

110-
test.concurrent('basic transpile', { retry: 3 }, async () => {
110+
test('basic transpile', { retry: 3 }, async () => {
111111
await testPage({ browser, port, hash: 'transpile' });
112112
});
113113

114-
test.concurrent('IDL window', async () => {
114+
test('IDL window', async () => {
115115
const { component } = await componentize({
116116
sourcePath: join(WEBIDL_FIXTURES_DIR, 'dom.test.js'),
117117
disableFeatures: ['clocks', 'random', 'stdio'],
@@ -127,7 +127,7 @@ suite('Browser', () => {
127127
await testPage({ browser, port, hash: 'test:dom.js' });
128128
});
129129

130-
test.concurrent('IDL console', async () => {
130+
test('IDL console', async () => {
131131
const { component } = await componentize({
132132
sourcePath: join(WEBIDL_FIXTURES_DIR, 'console.test.js'),
133133
disableFeatures: ['clocks', 'random', 'stdio'],

0 commit comments

Comments
 (0)