Skip to content

Commit

Permalink
chore(stub) lint
Browse files Browse the repository at this point in the history
  • Loading branch information
coderaiser committed May 9, 2020
1 parent fd389e6 commit 0d53168
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/stub.js
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand All @@ -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;

Expand Down

0 comments on commit 0d53168

Please sign in to comment.