chore(): resolve conflicts

This commit is contained in:
Kamil Myśliwiec
2021-02-01 16:11:37 +01:00
106 changed files with 1174 additions and 1008 deletions

View File

@@ -105,6 +105,22 @@ describe('RPC transport', () => {
});
});
it('/POST (custom client)', () => {
return request(server)
.post('/error?client=custom')
.send({})
.expect(200)
.expect('true');
});
it('/POST (standard client)', () => {
return request(server)
.post('/error?client=standard')
.send({})
.expect(200)
.expect('false');
});
afterEach(async () => {
await app.close();
});