File tree Expand file tree Collapse file tree 4 files changed +17
-2
lines changed Expand file tree Collapse file tree 4 files changed +17
-2
lines changed Original file line number Diff line number Diff line change @@ -142,8 +142,9 @@ jobs:
142
142
' angular' ,
143
143
' astro' ,
144
144
' aws-serverless' ,
145
- ' core' ,
146
145
' browser' ,
146
+ ' core' ,
147
+ ' gatsby' ,
147
148
' node' ,
148
149
' svelte' ,
149
150
' sveltekit' ,
Original file line number Diff line number Diff line change 1
- const baseConfig = require ( '../../ jest/jest. config.js ' ) ;
1
+ const baseConfig = require ( '@sentry-internal/ jest- config' ) ;
2
2
3
3
module . exports = {
4
4
...baseConfig ,
Original file line number Diff line number Diff line change 79
79
"lint" : " eslint . --format stylish" ,
80
80
"test" : " yarn ts-node scripts/pretest.ts && yarn jest" ,
81
81
"test:watch" : " yarn ts-node scripts/pretest.ts && yarn jest --watch" ,
82
+ "test:mutation" : " node ./../../scripts/stryker/run-with-sentry.mjs" ,
82
83
"yalc:publish" : " yalc publish --push --sig"
83
84
},
84
85
"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/gatsby' ,
10
+ } ,
11
+ } ;
12
+
13
+ export default config ;
You can’t perform that action at this time.
0 commit comments