File tree Expand file tree Collapse file tree 4 files changed +12
-11
lines changed
dev-packages/e2e-tests/test-applications/aws-serverless
src/lambda-functions-npm/TracingEsm Expand file tree Collapse file tree 4 files changed +12
-11
lines changed Original file line number Diff line number Diff line change @@ -916,12 +916,6 @@ jobs:
916
916
with :
917
917
use-installer : true
918
918
token : ${{ secrets.GITHUB_TOKEN }}
919
- - name : Pull SAM Docker images
920
- if : matrix.test-application == 'aws-serverless'
921
- run : |
922
- docker pull public.ecr.aws/sam/build-nodejs18.x:latest
923
- docker pull public.ecr.aws/sam/build-nodejs20.x:latest
924
- docker pull public.ecr.aws/sam/build-nodejs22.x:latest
925
919
- name : Restore caches
926
920
uses : ./.github/actions/restore-cache
927
921
with :
@@ -968,6 +962,16 @@ jobs:
968
962
browsers : chromium
969
963
cwd : ${{ runner.temp }}/test-application
970
964
965
+ - name : Pull SAM Node 18 image
966
+ if : matrix.test-application == 'aws-serverless' && contains(matrix.assert-command, 'NODE_VERSION=18')
967
+ run : |
968
+ docker pull public.ecr.aws/sam/build-nodejs18.x:latest
969
+
970
+ - name : Pull SAM Node 20 image
971
+ if : matrix.test-application == 'aws-serverless' && contains(matrix.assert-command, 'NODE_VERSION=20')
972
+ run : |
973
+ docker pull public.ecr.aws/sam/build-nodejs20.x:latest
974
+
971
975
- name : Run E2E test
972
976
working-directory : ${{ runner.temp }}/test-application
973
977
timeout-minutes : 10
Original file line number Diff line number Diff line change 1
1
import { getPlaywrightConfig } from '@sentry-internal/test-utils' ;
2
2
3
- export default getPlaywrightConfig ( undefined , {
4
- timeout : 100000 ,
5
- } ) ;
3
+ export default getPlaywrightConfig ( ) ;
Original file line number Diff line number Diff line change @@ -20,5 +20,5 @@ export const handler = Sentry.wrapHandler(async () => {
20
20
req . end ( ) ;
21
21
} ) ;
22
22
23
- Sentry . startSpan ( { name : 'manual-span' , op : process . version } , ( ) => { } ) ;
23
+ Sentry . startSpan ( { name : 'manual-span' , op : 'manual' } , ( ) => { } ) ;
24
24
} ) ;
Original file line number Diff line number Diff line change @@ -45,7 +45,6 @@ export const test = base.extend<{ testEnvironment: LocalLambdaStack; lambdaClien
45
45
args . push ( '--invoke-image' , `public.ecr.aws/sam/build-nodejs${ process . env . NODE_VERSION } .x:latest` ) ;
46
46
}
47
47
48
- console . log ( `[testEnvironment fixture] NODE_VERSION: ${ process . env . NODE_VERSION } ` ) ;
49
48
console . log ( `[testEnvironment fixture] Running SAM with args: ${ args . join ( ' ' ) } ` ) ;
50
49
51
50
const samProcess = spawn ( 'sam' , args , {
You can’t perform that action at this time.
0 commit comments