fix(tests): update

This commit is contained in:
Philipp Kunz 2018-12-02 15:34:05 +01:00
parent fd5f5e357c
commit c94b5e0009

View File

@ -40,8 +40,8 @@ tap.test("try to get async responses", async () => {
getResponse();
getResponse2();
getResponse2();
smartdelay.delayFor(1000).then(() => {
getResponse();
await smartdelay.delayFor(1000).then(async () => {
await getResponse();
// getResponse2();
});
});