We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4da4ad1 + 805adf5 commit 2dee8aaCopy full SHA for 2dee8aa
README.md
@@ -81,7 +81,7 @@ describe("Mockttp", () => {
81
it("lets you mock without specifying a port, allowing parallel testing", async () => {
82
await mockServer.forGet("/mocked-endpoint").thenReply(200, "Tip top testing");
83
84
- // Try mockServer.url or .urlFor(path) to get a the dynamic URL for the server's port
+ // Try mockServer.url or .urlFor(path) to get the dynamic URL for the server's port
85
let response = await superagent.get(mockServer.urlFor("/mocked-endpoint"));
86
87
expect(response.text).to.equal("Tip top testing");
0 commit comments