Tests
This commit is contained in:
parent
7840bc9be8
commit
80e9daa8dc
24 changed files with 5435 additions and 111 deletions
14
tests/commands/testing.js
Normal file
14
tests/commands/testing.js
Normal file
|
@ -0,0 +1,14 @@
|
|||
const { command } = require('../../src');
|
||||
|
||||
class test extends command {
|
||||
constructor() {
|
||||
super("test");
|
||||
super.configs = "tester";
|
||||
}
|
||||
|
||||
test(context) {
|
||||
context.message.reply(`Testing done by ${context.config.tester}`);
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = test;
|
Reference in a new issue