Update tests

This commit is contained in:
Ethan Lane 2021-09-26 14:32:56 +01:00
parent 3a9f1965ae
commit 799b04e936
Signed by: Vylpes
GPG key ID: EED233CC06D12504
5 changed files with 42 additions and 42 deletions

View file

@ -1,7 +1,7 @@
import { Command } from "../../../src/type/command";
export class noCategory extends Command {
export default class noCategory extends Command {
constructor() {
super();
}
}
}

View file

@ -1,8 +1,8 @@
import { Command } from "../../../src/type/command";
export class normal extends Command {
export default class normal extends Command {
constructor() {
super();
this._category = "General";
}
}
}

View file

@ -1,8 +1,8 @@
import { Command } from "../../../src/type/command";
export class roles extends Command {
export default class roles extends Command {
constructor() {
super();
this._roles = [ "Moderator" ];
}
}
}