Skip to content

Commit

Permalink
updated tests
Browse files Browse the repository at this point in the history
  • Loading branch information
csaba-kovacs committed Feb 13, 2024
1 parent 9a52e81 commit 900494d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions __tests__/utils.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ describe('Utils', () => {

expect(attachments[0].fields.find(a => a.title === 'Workflow')).toEqual({
title: 'Workflow',
value: `<https://github.com/voxmedia/github-action-slack-notify-build/actions/runs/${runId} | CI>`,
value: `<https://github.com/csaba-kovacs/github-action-slack-notify-build/actions/runs/${runId} | CI>`,
short: true,
});
});
Expand All @@ -46,7 +46,7 @@ describe('Utils', () => {

expect(attachments[0].fields.find(a => a.title === 'Repo')).toEqual({
title: 'Repo',
value: `<https://github.com/voxmedia/github-action-slack-notify-build | voxmedia/github-action-slack-notify-build>`,
value: `<https://github.com/csaba-kovacs/github-action-slack-notify-build | csaba-kovacs/github-action-slack-notify-build>`,
short: true,
});
});
Expand All @@ -66,7 +66,7 @@ describe('Utils', () => {

expect(attachments[0].fields.find(a => a.title === 'Branch')).toEqual({
title: 'Branch',
value: `<https://github.com/voxmedia/github-action-slack-notify-build/commit/abc123 | my-branch>`,
value: `<https://github.com/csaba-kovacs/github-action-slack-notify-build/commit/abc123 | my-branch>`,
short: true,
});
});
Expand All @@ -78,7 +78,7 @@ describe('Utils', () => {

expect(attachments[0].fields.find(a => a.title === 'Workflow')).toEqual({
title: 'Workflow',
value: `<https://github.com/voxmedia/github-action-slack-notify-build/actions/runs/${runId} | CI>`,
value: `<https://github.com/csaba-kovacs/github-action-slack-notify-build/actions/runs/${runId} | CI>`,
short: true,
});
});
Expand All @@ -98,7 +98,7 @@ describe('Utils', () => {

expect(attachments[0].fields.find(a => a.title === 'Pull Request')).toEqual({
title: 'Pull Request',
value: `<https://github.com/voxmedia/github-action-slack-notify-build/pulls/1 | This is a PR>`,
value: `<https://github.com/csaba-kovacs/github-action-slack-notify-build/pulls/1 | This is a PR>`,
short: true,
});
});
Expand Down

0 comments on commit 900494d

Please sign in to comment.