From 0d531680c91a1f3ca3480d429a7ff78d9c7652ae Mon Sep 17 00:00:00 2001 From: coderaiser Date: Sat, 9 May 2020 22:29:32 +0300 Subject: [PATCH] chore(stub) lint --- test/stub.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/stub.js b/test/stub.js index 8eca920..069e89a 100644 --- a/test/stub.js +++ b/test/stub.js @@ -56,7 +56,7 @@ test('stub: called: await: throw', async (t) => { t.end(); }); -test('stub: calledWith', async (t) => { +test('stub: calledWith', (t) => { const fn = stub(); fn('hello'); @@ -81,7 +81,7 @@ test('stub: calledWith: different', async (t) => { t.end(); }); -test('stub: calledWith: not called', async (t) => { +test('stub: calledWith: not called', (t) => { const {log} = console; console.log = noop;