Improvements to Tests

This commit is contained in:
Ethan Lane 2021-08-20 15:53:34 +01:00
parent 338514ba1e
commit f11f3954a1
3 changed files with 96 additions and 1 deletions

View file

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

View file

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