From e7b6d98120eced3efdd927438ee3c745e8ac7caf Mon Sep 17 00:00:00 2001 From: Rifat Nabi Date: Tue, 10 Sep 2019 02:38:18 +1000 Subject: [PATCH] (chore) Add missing semi-colon --- src/json/__tests__/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/json/__tests__/index.js b/src/json/__tests__/index.js index 02fff227..856f333b 100644 --- a/src/json/__tests__/index.js +++ b/src/json/__tests__/index.js @@ -57,7 +57,7 @@ describe('JSON', () => { }); const jsonAst = parse(rawJsonWithArrayItem, { loc: true }); expect(getDecoratedDataPath(jsonAst, '/arr/3')).toMatchSnapshot(); - }) + }); it('can work with unescaped JSON pointers with ~1', async () => { const rawJson = await loadScenario(5);