Skip to content

Commit

Permalink
#984: renamed test cases
Browse files Browse the repository at this point in the history
  • Loading branch information
phjulia committed Aug 26, 2023
1 parent 989fed4 commit 695afb0
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions test/type.automation.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -888,7 +888,7 @@ describe('type: automation', () => {
});
});
describe('Update notifications ================', () => {
it('Should update run ERROR EMAIL address and COMPLETION EMAIL address', async () => {
it('Should update ERROR EMAIL address and COMPLETION EMAIL address', async () => {
handler.setOptions({ errorEmail: 'test@test.com', completionEmail: 'test@test.com' });
const updatedNotifications = await handler.updateNotifications(
'testInstance/testBU',
Expand Down Expand Up @@ -924,7 +924,7 @@ describe('type: automation', () => {
);
return;
});
it('Should update run ERROR NOTE and run ERROR EMAIL address', async () => {
it('Should update ERROR NOTE and ERROR EMAIL address', async () => {
handler.setOptions({ errorEmail: 'test@test.com', errorNote: 'test' });
const updatedNotifications = await handler.updateNotifications(
'testInstance/testBU',
Expand Down Expand Up @@ -960,7 +960,7 @@ describe('type: automation', () => {
);
return;
});
it('Should update run COMPLETION NOTE and run COMPLETION EMAIL address', async () => {
it('Should update COMPLETION NOTE and COMPLETION EMAIL address', async () => {
handler.setOptions({ completionEmail: 'test@test.com', completionNote: 'test' });
const updatedNotifications = await handler.updateNotifications(
'testInstance/testBU',
Expand Down Expand Up @@ -996,7 +996,7 @@ describe('type: automation', () => {
);
return;
});
it('Should update run COMPLETION EMAIL and run ERROR NOTE', async () => {
it('Should update COMPLETION EMAIL and ERROR NOTE', async () => {
handler.setOptions({ completionEmail: 'test@test.com', errorNote: 'test' });
const updatedNotifications = await handler.updateNotifications(
'testInstance/testBU',
Expand Down Expand Up @@ -1032,7 +1032,7 @@ describe('type: automation', () => {
);
return;
});
it('Should update run ERROR EMAIL and run COMPLETION NOTE', async () => {
it('Should update ERROR EMAIL and COMPLETION NOTE', async () => {
handler.setOptions({ errorEmail: 'test@test.com', completionNote: 'test' });
const updatedNotifications = await handler.updateNotifications(
'testInstance/testBU',
Expand Down Expand Up @@ -1068,7 +1068,7 @@ describe('type: automation', () => {
);
return;
});
it('Should update run ERROR EMAIL, COMPLETION EMAIL and run COMPLETION NOTE', async () => {
it('Should update ERROR EMAIL, COMPLETION EMAIL and COMPLETION NOTE', async () => {
handler.setOptions({
errorEmail: 'test@test.com',
completionEmail: 'test@test.com',
Expand Down Expand Up @@ -1110,7 +1110,7 @@ describe('type: automation', () => {
);
return;
});
it('Should update run ERROR EMAIL, COMPLETION EMAIL and run ERROR NOTE', async () => {
it('Should update ERROR EMAIL, COMPLETION EMAIL and ERROR NOTE', async () => {
handler.setOptions({
errorEmail: 'test@test.com',
errorNote: 'test',
Expand Down Expand Up @@ -1150,7 +1150,7 @@ describe('type: automation', () => {
);
return;
});
it('Should update run ERROR EMAIL, COMPLETION NOTE and run ERROR NOTE', async () => {
it('Should update ERROR EMAIL, COMPLETION NOTE and ERROR NOTE', async () => {
handler.setOptions({
errorEmail: 'test@test.com',
errorNote: 'test',
Expand Down Expand Up @@ -1190,7 +1190,7 @@ describe('type: automation', () => {
);
return;
});
it('Should update run COMPLETION EMAIL, COMPLETION NOTE and run ERROR NOTE', async () => {
it('Should update COMPLETION EMAIL, COMPLETION NOTE and ERROR NOTE', async () => {
handler.setOptions({
errorEmail: 'test@test.com',
errorNote: 'test',
Expand Down Expand Up @@ -1232,7 +1232,7 @@ describe('type: automation', () => {
);
return;
});
it('Should update all NOTES and both run ERROR EMAIL and run COMPLETION EMAIL', async () => {
it('Should update all NOTES and both ERROR EMAIL and COMPLETION EMAIL', async () => {
handler.setOptions({ errorEmail: 'test@test.com', errorNote: 'test' });
const updatedNotifications = await handler.updateNotifications(
'testInstance/testBU',
Expand Down

0 comments on commit 695afb0

Please sign in to comment.