Skip to content

Commit 3d2860c

Browse files
committed
aws-serverless
1 parent 264f8a1 commit 3d2860c

File tree

6 files changed

+40
-1
lines changed

6 files changed

+40
-1
lines changed

.github/workflows/mutation.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,7 @@ jobs:
141141
package: [
142142
'angular',
143143
'astro',
144+
'aws-serverless',
144145
'core',
145146
'browser',
146147
'node',
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
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;

packages/astro/stryker.config.mjs

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
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;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
module.exports = require('../../jest/jest.config.js');
1+
module.exports = require('@sentry-internal/jest-config');

packages/aws-serverless/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@
9494
"fix": "eslint . --format stylish --fix",
9595
"lint": "eslint . --format stylish",
9696
"test": "jest",
97+
"test:mutation": "node ./../../scripts/stryker/run-with-sentry.mjs",
9798
"test:watch": "jest --watch",
9899
"yalc:publish": "yalc publish --push --sig"
99100
},
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
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;

0 commit comments

Comments
 (0)