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.
1 parent 9b76197 commit 73f1163Copy full SHA for 73f1163
index.test.js
@@ -32,13 +32,13 @@ function dummyApi(url) {
32
}
33
34
test("returns successfully on 2xx status codes", async () => {
35
- const api = dummyApi("https://httpbin.org/post");
+ const api = dummyApi("https://httpbingo.org/post");
36
const status = await api.redeploy("foo", "rollout", "bar");
37
expect(status).toBe(200);
38
});
39
40
test("throws on error codes", async () => {
41
- const api = dummyApi("https://httpbin.org/status/404");
+ const api = dummyApi("https://httpbingo.org/status/404");
42
await expect(api.redeploy("foo", "rollout", "bar")).rejects.toThrow(
43
"HTTP error 404",
44
);
0 commit comments