From 0bc513fd926c07a0c6050f4b4c742e856d8dc435 Mon Sep 17 00:00:00 2001 From: Jesse Hallam Date: Tue, 24 Oct 2023 14:51:25 -0300 Subject: [PATCH] more logging --- .../tests/integration/channels/enterprise/metrics/helper.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e-tests/cypress/tests/integration/channels/enterprise/metrics/helper.js b/e2e-tests/cypress/tests/integration/channels/enterprise/metrics/helper.js index 0cec198fb7a..72eaa4a2673 100644 --- a/e2e-tests/cypress/tests/integration/channels/enterprise/metrics/helper.js +++ b/e2e-tests/cypress/tests/integration/channels/enterprise/metrics/helper.js @@ -15,7 +15,7 @@ export const checkMetrics = (expectedStatusCode) => { failOnStatusCode: false, }).then((response) => { expect(response.headers['Content-Type'], 'should not hit webapp').not.to.equal('text/html'); - expect(response.status, 'should match expected status code').to.equal(expectedStatusCode); + expect(response.status, `should match expected status code hitting ${baseURL.toString()}`).to.equal(expectedStatusCode); }); }); };