import { it, assert } from 'folktest' import { booleanLiteral, iu } from '../../src/parser/literal.js' import { parse } from 'kuebiko' export const Tests = [ it('whatever', () => { console.log(parse(iu, 'i').chain(x => x)) console.log(parse(booleanLiteral, 'false').chain(x => x)) }) ]