fix(core): invalid arguments order, fix message key (http exceptions)

This commit is contained in:
Kamil Myśliwiec
2020-03-15 14:03:07 +01:00
parent 0effb70398
commit ed46d6c618
9 changed files with 68 additions and 31 deletions

View File

@@ -43,8 +43,8 @@ describe('Hello world (default adapter)', () => {
.get('/host/local-pipe/1')
.expect(404)
.expect({
message: 'Not Found',
error: 'Cannot GET /host/local-pipe/1',
error: 'Not Found',
message: 'Cannot GET /host/local-pipe/1',
statusCode: 404,
});
});