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