1 2 3 4 5 6 7 8 9
import { parse } from '../src/parse-expr' import * as P from '../src/utils/parser-comb' describe('parser', () => { it('should die', () => { const res = parse('hello(test)') expect(res).toEqual(['hello', '(test, 1)']) }) })