wgsl-reflect/tests/units/index.js
2025-04-16 22:21:46 -05:00

17 lines
313 B
JavaScript

import { it, assert } from 'folktest'
import { ident } from '../../src/parser/keyword.js'
export const Tests = [
it('whatever', () => {
const pass1 = 'test1'
const pass2 = '_Test2'
const fail1 = '_'
const fail2 = '__test'
const fail3 = 'default'
console.log(
ident
)
})
]