Skip to content

Commit

Permalink
test(merge.test.ts): use toStrictEqual over toEqual
Browse files Browse the repository at this point in the history
  • Loading branch information
copperwall authored and gr2m committed Sep 24, 2019
1 parent 51cf5e0 commit 4369ed8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/merge.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ describe("endpoint.merge()", () => {

endpoint.merge(route);

expect(route).toEqual({
expect(route).toStrictEqual({
owner: "octokit",
repo: "endpoint.js"
});
Expand All @@ -116,7 +116,7 @@ describe("endpoint.merge()", () => {

endpoint.merge(route);

expect(route).toEqual({
expect(route).toStrictEqual({
owner: "octokit",
repo: "endpoint.js",
headers: {
Expand Down

0 comments on commit 4369ed8

Please sign in to comment.