command-parser/tests/CommandOption.test.js
Navy.gif e2503d22a0
All checks were successful
continuous-integration/drone/push Build is passing
test configs
2023-02-12 17:20:05 +02:00

28 lines
537 B
JavaScript

const { Parser, Command, CommandOption, OptionType } = require('../build/index');
const opt = new CommandOption({
name: 'text',
type: OptionType.STRING
});
class TestCommand extends Command {
constructor() {
super({
name: 'test',
options: [opt]
})
}
};
const parser = new Parser({
commands: [new TestCommand()],
resolver: null
});
(async () => {
const parsed = await parser.parseMessage('test message.author')
console.log(parsed)
})();
test('', () => {
})