import { it, assertEq } from 'folktest' import { anyChar, parse } from '../../src/index.js' import { skip } from '../../src/cond.js' import { parseEq } from './common.js' export const Conditionals = [ it('skip', () => { parseEq(skip(anyChar), 'test', []) }) ]