Skip to content

Commit

Permalink
chore: fix test on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
SimenB committed Feb 15, 2022
1 parent c557359 commit 49f217c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion e2e/coverage-handlebars/__tests__/greet.js
Expand Up @@ -7,7 +7,7 @@
const greet = require('../greet.hbs');

test('am', () => {
expect(greet({am: true, name: 'Joe'})).toEqual(
expect(greet({am: true, name: 'Joe'}).replace(/\r\n/g, '\n')).toEqual(
'<p>Good\n morning\nJoe!</p>\n',
);
});

0 comments on commit 49f217c

Please sign in to comment.