You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
364 B
15 lines
364 B
import {describe, it} from 'node:test'
|
|
import assert from 'node:assert'
|
|
|
|
import config from './../_config.js'
|
|
config()
|
|
|
|
import { resolveActionClass } from './../helper/resolver.js'
|
|
|
|
describe('helper / resolver', () => {
|
|
it('should get a action class', () => {
|
|
const action = resolveActionClass('test')
|
|
assert.match(action, /test.js/)
|
|
})
|
|
})
|