File tree Expand file tree Collapse file tree 4 files changed +16
-1
lines changed
packages/google-cloud-serverless Expand file tree Collapse file tree 4 files changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -145,6 +145,7 @@ jobs:
145
145
' browser' ,
146
146
' core' ,
147
147
' gatsby' ,
148
+ ' google-cloud-serverless' ,
148
149
' node' ,
149
150
' svelte' ,
150
151
' sveltekit' ,
Original file line number Diff line number Diff line change 1
- module . exports = require ( '../../ jest/jest. config.js ' ) ;
1
+ module . exports = require ( '@sentry-internal/ jest- config' ) ;
Original file line number Diff line number Diff line change 81
81
"lint" : " eslint . --format stylish" ,
82
82
"test" : " jest" ,
83
83
"test:watch" : " jest --watch" ,
84
+ "test:mutation" : " node ./../../scripts/stryker/run-with-sentry.mjs" ,
84
85
"yalc:publish" : " yalc publish --push --sig"
85
86
},
86
87
"volta" : {
Original file line number Diff line number Diff line change
1
+ import baseConfig from '@sentry-internal/stryker-config/config' ;
2
+
3
+ /** @type {import('@stryker-mutator/api/core').PartialStrykerOptions } */
4
+ const config = {
5
+ ...baseConfig ,
6
+ testRunner : 'jest' ,
7
+ dashboard : {
8
+ ...baseConfig . dashboard ,
9
+ module : '@sentry/google-cloud-serverless' ,
10
+ } ,
11
+ } ;
12
+
13
+ export default config ;
You can’t perform that action at this time.
0 commit comments