Skip to content

Commit

Permalink
test: update snapshot
Browse files Browse the repository at this point in the history
  • Loading branch information
pi0 committed Jan 4, 2024
1 parent 62735f6 commit 59cdd8c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/index.test.ts
Expand Up @@ -106,7 +106,7 @@ describe("errors", () => {
host: "192.168.1.999",
}).catch((error) => error);
expect(error.toString()).toMatchInlineSnapshot(
'"GetPortError: Unable to find a random port on host \\"192.168.1.999\\""',
`"GetPortError: Unable to find a random port on host "192.168.1.999""`,
);
});

Expand All @@ -116,7 +116,7 @@ describe("errors", () => {
random: false,
}).catch((error) => error);
expect(error.toString()).toMatchInlineSnapshot(
'"GetPortError: Unable to find an available port on host \\"192.168.1.999\\" (tried 3000, 3000-3100)"',
`"GetPortError: Unable to find an available port on host "192.168.1.999" (tried 3000, 3000-3100)"`,
);
});
});

0 comments on commit 59cdd8c

Please sign in to comment.