Skip to content

Commit

Permalink
remove slack alerts (#517)
Browse files Browse the repository at this point in the history
* remove slack alerts

* fail a test

* unfail a test
  • Loading branch information
aehnh authored Feb 13, 2025
1 parent 7196fd2 commit 0715642
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 30 deletions.
30 changes: 15 additions & 15 deletions packages/tests-e2e/playwright.config.complete.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,21 +28,21 @@ export default defineConfig({
: undefined
: undefined,
reporter: [
[
'../../node_modules/playwright-slack-report/dist/src/SlackReporter.js',
{
channels: ['corbado-tests'],
sendResults: 'always',
showInThread: true,
meta: [
{
key: 'Test Run Info',
value: `https://github.com/corbado/javascript/actions/runs/${process.env.GITHUB_RUN_ID}`,
},
{ key: 'branch', value: `${process.env.GITHUB_BRANCH_NAME}` },
],
},
],
// [
// '../../node_modules/playwright-slack-report/dist/src/SlackReporter.js',
// {
// channels: ['corbado-tests'],
// sendResults: 'always',
// showInThread: true,
// meta: [
// {
// key: 'Test Run Info',
// value: `https://github.com/corbado/javascript/actions/runs/${process.env.GITHUB_RUN_ID}`,
// },
// { key: 'branch', value: `${process.env.GITHUB_BRANCH_NAME}` },
// ],
// },
// ],
['html'],
['junit', { outputFile: 'test-results/results.xml' }],
],
Expand Down
30 changes: 15 additions & 15 deletions packages/tests-e2e/playwright.config.connect.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,21 +21,21 @@ export default defineConfig({
: undefined
: undefined,
reporter: [
[
'../../node_modules/playwright-slack-report/dist/src/SlackReporter.js',
{
channels: ['corbado-tests'],
sendResults: 'always',
showInThread: true,
meta: [
{
key: 'Test Run Info',
value: `https://github.com/corbado/javascript/actions/runs/${process.env.GITHUB_RUN_ID}`,
},
{ key: 'branch', value: `${process.env.GITHUB_BRANCH_NAME}` },
],
},
],
// [
// '../../node_modules/playwright-slack-report/dist/src/SlackReporter.js',
// {
// channels: ['corbado-tests'],
// sendResults: 'always',
// showInThread: true,
// meta: [
// {
// key: 'Test Run Info',
// value: `https://github.com/corbado/javascript/actions/runs/${process.env.GITHUB_RUN_ID}`,
// },
// { key: 'branch', value: `${process.env.GITHUB_BRANCH_NAME}` },
// ],
// },
// ],
['html'],
['junit', { outputFile: 'test-results/results.xml' }],
],
Expand Down

0 comments on commit 0715642

Please sign in to comment.