Skip to content

Commit

Permalink
test(index): use toStrictEqual() over toEqual() (#305)
Browse files Browse the repository at this point in the history
  • Loading branch information
Fdawgs committed Jul 24, 2023
1 parent 37116c8 commit 843f6df
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/index.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,9 +108,9 @@ describe("Convert function", () => {
optionCombos.map(async (options) => {
const unRtf = new UnRTF(testBinaryPath);

await expect(unRtf.convert(file, options)).resolves.toEqual(
expect.any(String)
);
await expect(
unRtf.convert(file, options)
).resolves.toStrictEqual(expect.any(String));
})
);
});
Expand Down

0 comments on commit 843f6df

Please sign in to comment.