mirror of
https://github.com/mattermost/mattermost.git
synced 2026-02-03 20:40:00 -05:00
more logging
This commit is contained in:
parent
dd96e365c9
commit
0bc513fd92
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
});
|
||||
});
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue