File tree Expand file tree Collapse file tree 3 files changed +14
-1
lines changed Expand file tree Collapse file tree 3 files changed +14
-1
lines changed Original file line number Diff line number Diff line change 75
75
"lint" : " eslint . --format stylish" ,
76
76
"test" : " vitest run" ,
77
77
"test:watch" : " vitest --watch" ,
78
+ "test:mutation" : " node ./../../scripts/stryker/run-with-sentry.mjs" ,
78
79
"yalc:publish" : " yalc publish --push --sig"
79
80
},
80
81
"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
+ 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
+ import baseConfig from '@sentry-internal/vitest-config' ;
1
2
import { defineConfig } from 'vitest/config' ;
2
- import baseConfig from '../../vite/vite.config' ;
3
3
4
4
export default defineConfig ( {
5
5
...baseConfig ,
You can’t perform that action at this time.
0 commit comments