From b5893d68ce4eacbc3ae431ca48f821657236c7aa Mon Sep 17 00:00:00 2001 From: Akshay Nair Date: Fri, 14 Jan 2022 19:10:49 +0530 Subject: refactor: refactors imports + formatting --- tests/parser.spec.ts | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'tests/parser.spec.ts') diff --git a/tests/parser.spec.ts b/tests/parser.spec.ts index 6c773d6..8a53faf 100644 --- a/tests/parser.spec.ts +++ b/tests/parser.spec.ts @@ -4,14 +4,10 @@ import { whitespace, whitespaces0, delimited, - sepBy1, - symbol, } from '../src/parser/utils' import { parser } from '../src/parser' import { none, some } from 'fp-ts/Option' import { Expr, Literal } from '../src/types' -import { jlog } from '../src/utils' -import { parse } from 'fp-ts/lib/Json' const wrap = (e: Expr) => right([[none, e, none], '']) const grouped = (l: Expr[]) => wrap(Expr.Group({ exprs: l })) @@ -88,7 +84,7 @@ describe('Parser', () => { exprs: [ Expr.AnyString(), Expr.Group({ exprs: [Expr.AnyBool(), Expr.Truthy()] }), - ] + ], }), Expr.AnyNumber(), ]), -- cgit v1.3.1