From 881ce6bb04ea1d2710f58fba6344e267ed317476 Mon Sep 17 00:00:00 2001 From: RobertAKARobin Date: Mon, 10 Dec 2018 09:08:02 -0600 Subject: [PATCH] Added missing semicolons to make linter happy --- test/chainAsync.test.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/chainAsync.test.js b/test/chainAsync.test.js index 031b88681..44da9fef4 100644 --- a/test/chainAsync.test.js +++ b/test/chainAsync.test.js @@ -5,15 +5,15 @@ test('chainAsync is a Function', () => { expect(chainAsync).toBeInstanceOf(Function); }); -let incrementer = 0 +let incrementer = 0; test('Calls all functions in an array', () => { chainAsync([ next => { - incrementer += 1 + incrementer += 1; next(); }, next => { - incrementer += 1 + incrementer += 1; next(); }, next => { @@ -31,4 +31,4 @@ test('Last function does not receive "next" argument', () => { expect(next).toBe(null); } ]); -}) +});