kuebiko/tests/units/index.js
2025-04-16 19:25:34 -05:00

11 lines
308 B
JavaScript

import { it, assert } from 'folktest'
import { map, not, until, char, parse, State, seq, str } from '../../src/index.js'
import { mapStr, join } from '../../src/fn.js'
export const Tests = [
it('whatever', () => {
const a = 'abcdef!!!!'.split('')
parse(str('abc'), 'abc').map(console.log)
})
]