Skip to content

Commit 7449648

Browse files
committed
undo
1 parent adb1393 commit 7449648

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

packages/cloudflare/test/durableobject.test.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,7 @@ describe('instrumentDurableObjectWithSentry', () => {
115115
}
116116
});
117117

118-
// Run sequentially to avoid global spy interference from parallel tests
119-
it.sequential('flush performs after all waitUntil promises are finished', async () => {
118+
it('flush performs after all waitUntil promises are finished', async () => {
120119
vi.useFakeTimers();
121120
onTestFinished(() => {
122121
vi.useRealTimers();

packages/cloudflare/test/handler.test.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,7 @@ function addDelayedWaitUntil(context: ExecutionContext) {
3535
context.waitUntil(new Promise<void>(resolve => setTimeout(() => resolve())));
3636
}
3737

38-
// Run tests sequentially to avoid global spy interference from parallel tests
39-
describe.sequential('withSentry', () => {
38+
describe('withSentry', () => {
4039
beforeEach(() => {
4140
vi.clearAllMocks();
4241
});

packages/cloudflare/test/request.test.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@ function addDelayedWaitUntil(context: ExecutionContext) {
1818
context.waitUntil(new Promise<void>(resolve => setTimeout(() => resolve())));
1919
}
2020

21-
// Run tests sequentially to avoid global spy interference from parallel tests
22-
describe.sequential('withSentry', () => {
21+
describe('withSentry', () => {
2322
beforeAll(() => {
2423
setAsyncLocalStorageAsyncContextStrategy();
2524
});

0 commit comments

Comments
 (0)