Skip to content

Commit 3f8a7c8

Browse files
test
1 parent 9193967 commit 3f8a7c8

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

packages/web/tests/stream.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ describe(
218218
await vi.waitFor(
219219
() => {
220220
// to-have-been-called seems to not work after failing a check
221-
console.log('the number of calls is ',uploadSpy.mock.calls.length);
221+
console.log('the number of calls is ', uploadSpy.mock.calls.length);
222222
expect(uploadSpy.mock.calls.length).equals(throwCounter + 1);
223223
},
224224
{

packages/web/vitest.config.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ const config: UserConfigExport = {
3535
},
3636
plugins: [wasm(), topLevelAwait()],
3737
test: {
38-
isolate: true,
38+
isolate: false,
3939
globals: true,
4040
include: ['tests/**/*.test.ts'],
4141
maxConcurrency: 1,
@@ -46,10 +46,10 @@ const config: UserConfigExport = {
4646
instances: [
4747
{
4848
browser: 'chromium'
49-
},
50-
{
51-
browser: 'firefox'
5249
}
50+
// {
51+
// browser: 'firefox'
52+
// }
5353
// This requires some additional work to get all tests passing
5454
// {
5555
// browser: 'webkit'

0 commit comments

Comments
 (0)