Skip to content

Commit a90e94c

Browse files
committed
dont use sequential for the integration tests
1 parent 34a15fc commit a90e94c

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

integrations/integrations.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ describe('integrations', () => {
5858
return temporaryIntegrationPath;
5959
}
6060

61-
test.sequential('nextjs', { timeout: 30_000 }, async () => {
61+
test('nextjs', { timeout: 30_000 }, async () => {
6262
const temporaryNextApp = await prepareTemporaryIntegrationCopy('./nextjs');
6363

6464
const buildInstall = spawnSync(
@@ -74,7 +74,7 @@ describe('integrations', () => {
7474
}
7575
});
7676

77-
test.sequential('esbuild', { timeout: 30_000 }, async () => {
77+
test('esbuild', { timeout: 30_000 }, async () => {
7878
const temporaryIntegration =
7979
await prepareTemporaryIntegrationCopy('./esbuild');
8080

integrations/nextjs/package.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,6 @@
55
"react-dom": "19.2.0",
66
"resend": "../.."
77
},
8-
"devDependencies": {
9-
"@types/react": "19.2.0",
10-
"@types/react-dom": "19.2.0"
11-
},
128
"scripts": {
139
"build": "next build"
1410
}

0 commit comments

Comments
 (0)