Skip to content

Commit bc87e33

Browse files
authored
chore: Skip Lambda layer tests (#17139)
skip until we figure out why they are failing on CI.
1 parent 17210d9 commit bc87e33

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

dev-packages/e2e-tests/test-applications/aws-lambda-layer-cjs/package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,8 @@
1818
},
1919
"volta": {
2020
"extends": "../../package.json"
21+
},
22+
"sentryTest": {
23+
"skip": true
2124
}
2225
}

dev-packages/e2e-tests/test-applications/aws-lambda-layer-cjs/tests/basic.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ test('Lambda layer SDK bundle sends events', async ({ request }) => {
1818
);
1919

2020
child_process.execSync('pnpm start', {
21-
stdio: 'ignore',
21+
stdio: 'inherit',
2222
});
2323

2424
const transactionEvent = await transactionEventPromise;

dev-packages/e2e-tests/test-applications/aws-lambda-layer-esm/package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,8 @@
1919
},
2020
"volta": {
2121
"extends": "../../package.json"
22+
},
23+
"sentryTest": {
24+
"skip": true
2225
}
2326
}

dev-packages/e2e-tests/test-applications/aws-lambda-layer-esm/tests/basic.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ test('Lambda layer SDK bundle sends events', async ({ request }) => {
1818
);
1919

2020
child_process.execSync('pnpm start', {
21-
stdio: 'ignore',
21+
stdio: 'inherit',
2222
});
2323

2424
const transactionEvent = await transactionEventPromise;

0 commit comments

Comments
 (0)