File tree Expand file tree Collapse file tree 6 files changed +40
-1
lines changed Expand file tree Collapse file tree 6 files changed +40
-1
lines changed Original file line number Diff line number Diff line change @@ -141,6 +141,7 @@ jobs:
141
141
package : [
142
142
' angular' ,
143
143
' astro' ,
144
+ ' aws-serverless' ,
144
145
' core' ,
145
146
' browser' ,
146
147
' node' ,
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
+ dashboard : {
7
+ ...baseConfig . dashboard ,
8
+ module : '@sentry/angular' ,
9
+ } ,
10
+ } ;
11
+
12
+ export default config ;
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
+ dashboard : {
7
+ ...baseConfig . dashboard ,
8
+ module : '@sentry/astro' ,
9
+ } ,
10
+ } ;
11
+
12
+ export default config ;
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 94
94
"fix" : " eslint . --format stylish --fix" ,
95
95
"lint" : " eslint . --format stylish" ,
96
96
"test" : " jest" ,
97
+ "test:mutation" : " node ./../../scripts/stryker/run-with-sentry.mjs" ,
97
98
"test:watch" : " jest --watch" ,
98
99
"yalc:publish" : " yalc publish --push --sig"
99
100
},
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/aws-serverless' ,
10
+ } ,
11
+ } ;
12
+
13
+ export default config ;
You can’t perform that action at this time.
0 commit comments