Skip to content

Commit

Permalink
Fix test names
Browse files Browse the repository at this point in the history
  • Loading branch information
sabarasaba committed Sep 10, 2021
1 parent 849eb2e commit 8d02849
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ describe('Overview - Fix deprecation logs step', () => {
});

describe('Step status', () => {
test(`It's set as complete when there are no deprecation logs since last checkpoint`, async () => {
test(`It's complete when there are no deprecation logs since last checkpoint`, async () => {
httpRequestsMockHelpers.setUpdateDeprecationLoggingResponse(getLoggingResponse(true));
httpRequestsMockHelpers.setLoadDeprecationLogsCountResponse({ count: 0 });

Expand All @@ -63,7 +63,7 @@ describe('Overview - Fix deprecation logs step', () => {
expect(exists(`fixLogsStep-complete`)).toBe(true);
});

test(`It's set as incomplete when there are deprecation logs since last checkpoint`, async () => {
test(`It's incomplete when there are deprecation logs since last checkpoint`, async () => {
httpRequestsMockHelpers.setUpdateDeprecationLoggingResponse(getLoggingResponse(true));
httpRequestsMockHelpers.setLoadDeprecationLogsCountResponse({ count: 5 });

Expand All @@ -78,7 +78,7 @@ describe('Overview - Fix deprecation logs step', () => {
expect(exists(`fixLogsStep-incomplete`)).toBe(true);
});

test(`It's set as incomplete when log collection is disabled `, async () => {
test(`It's incomplete when log collection is disabled `, async () => {
httpRequestsMockHelpers.setUpdateDeprecationLoggingResponse(getLoggingResponse(true));
httpRequestsMockHelpers.setLoadDeprecationLogsCountResponse({ count: 0 });

Expand Down

0 comments on commit 8d02849

Please sign in to comment.