fix(core): update

This commit is contained in:
2019-09-27 20:16:28 +02:00
parent 94cb734f9f
commit 434dbd718a
4 changed files with 56 additions and 1 deletions

View File

@ -60,11 +60,17 @@ tap.test('first test', async tools => {
'http://localhost:2345/apiroute3'
]);
const response2 = await new webrequest.WebRequest().getJson('http://localhost:2345/apiroute3');
console.log(response);
console.log(response2)
expect(response)
.property('hithere')
.to.equal('hi');
expect(response2)
.property('hithere')
.to.equal('hi');
});
tap.test('tear down server', async () => {