Add help command tests

This commit is contained in:
Ethan Lane 2022-01-02 14:56:08 +00:00
parent 6994a339b6
commit 451bfe1039
Signed by: Vylpes
GPG key ID: EED233CC06D12504
5 changed files with 83 additions and 16 deletions

View file

@ -0,0 +1,10 @@
import { Command } from "../../../src/type/command";
export default class MockCmd extends Command {
constructor() {
super();
super._category = "General";
super._roles = ["Moderator"];
}
}