Skip to content

Commit

Permalink
post rebase fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Draco-Umbratilis committed Jul 28, 2020
1 parent c727af1 commit e2a4d28
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -59,11 +59,11 @@ test('should render the terminal link', () => {
test('should display test time for slow test', () => {
const result = getResultHeader(testResultSlow, globalConfig);

expect(result).toContain(`${testTime / 1000}s`);
expect(result).toContain(`${testTime / 1000} s`);
});

test('should not display test time for fast test ', () => {
const result = getResultHeader(testResultFast, globalConfig);

expect(result).not.toContain(`${testTime / 1000}s`);
expect(result).not.toContain(`${testTime / 1000} s`);
});

0 comments on commit e2a4d28

Please sign in to comment.