wgsl-reflect/tests/units/index.js
2025-04-18 18:17:15 -05:00

11 lines
300 B
JavaScript

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))
})
]