From 9e8cf73c420c3ac2e12340a18ebe3d8d48b8a8e6 Mon Sep 17 00:00:00 2001 From: Maciej Brencz Date: Mon, 18 Sep 2023 13:40:10 +0100 Subject: [PATCH] integration-spec.yaml: mark "httpbin's /basic-auth" as flaky (#1319) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Integration tests › httpbin's /basic-auth (with --auth-user and --auth-pass) › should have "requests" metric set properly assert.strictEqual(received, expected) Expected value to strictly be equal to: 2 Received: 1 118 | Object.keys(test.metrics || {}).forEach((name) => { 119 | it(`should have "${name}" metric set properly`, () => { > 120 | assert.strictEqual(results.getMetric(name), test.metrics[name]); | ^ 121 | }); 122 | }); 123 | at Object.strictEqual (test/integration.test.js:120:18) --- test/integration-spec.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/test/integration-spec.yaml b/test/integration-spec.yaml index 8d43f92c..44a59dd7 100644 --- a/test/integration-spec.yaml +++ b/test/integration-spec.yaml @@ -816,6 +816,7 @@ - url: "http://127.0.0.1:5555/basic-auth/foo/bar" label: "httpbin's /basic-auth (with --auth-user and --auth-pass)" + flaky: "http-bin sometimes gives us a single response" options: auth-user: "foo" auth-pass: "bar"