17 lines
313 B
JavaScript
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
|
|
)
|
|
})
|
|
]
|
|
|