Skip to content

Commit 7452382

Browse files
committed
add google-cloud-serverless
1 parent b1c00fe commit 7452382

File tree

4 files changed

+16
-1
lines changed

4 files changed

+16
-1
lines changed

.github/workflows/mutation.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,7 @@ jobs:
145145
'browser',
146146
'core',
147147
'gatsby',
148+
'google-cloud-serverless',
148149
'node',
149150
'svelte',
150151
'sveltekit',
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/google-cloud-serverless/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@
8181
"lint": "eslint . --format stylish",
8282
"test": "jest",
8383
"test:watch": "jest --watch",
84+
"test:mutation": "node ./../../scripts/stryker/run-with-sentry.mjs",
8485
"yalc:publish": "yalc publish --push --sig"
8586
},
8687
"volta": {
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/google-cloud-serverless',
10+
},
11+
};
12+
13+
export default config;

0 commit comments

Comments
 (0)