Skip to content

Commit

Permalink
fix(test): makes the 'required' type rule scenario for the azure-devo…
Browse files Browse the repository at this point in the history
…ps reporter work on windows as well
  • Loading branch information
sverweij committed Jul 8, 2023
1 parent c870a81 commit a6c59c0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/report/azure-devops/azure-devops.spec.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,9 @@ describe("[I] report/azure-devops", () => {
);
const lResult = render(requiredErrs);

expect(lResult.output).to.equal(lFixture);
expect(normalizeNewline(lResult.output)).to.equal(
normalizeNewline(lFixture)
);
// eslint-disable-next-line no-magic-numbers
expect(lResult.exitCode).to.equal(5);
});
Expand Down

0 comments on commit a6c59c0

Please sign in to comment.