From b664e6bd1eb030d740c733b4beab28c72a6d1f00 Mon Sep 17 00:00:00 2001 From: svetlagasheva Date: Wed, 19 Feb 2020 16:03:35 +0200 Subject: [PATCH] semicolon added --- tests/routesRegexp.spec.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/routesRegexp.spec.js b/tests/routesRegexp.spec.js index 5b82d1832..c90bad859 100644 --- a/tests/routesRegexp.spec.js +++ b/tests/routesRegexp.spec.js @@ -121,7 +121,7 @@ describe('routesRegexp', () => { it('match /library/', async () => { expect(Array.from('/library/'.match(routesRegexp.library.regexp))) .toEqual(['/library/', '', undefined]); - }) + }); it('match /library//', async () => { expect(Array.from('/library//'.match(routesRegexp.library.regexp))) @@ -131,7 +131,7 @@ describe('routesRegexp', () => { it('match /library/1', async () => { expect(Array.from('/library/1'.match(routesRegexp.library.regexp))) .toEqual(['/library/1', '1', undefined]); - }) + }); it('match /library/1/', async () => { expect(Array.from('/library/1/'.match(routesRegexp.library.regexp)))