Improvements to Tests
This commit is contained in:
parent
338514ba1e
commit
f11f3954a1
3 changed files with 96 additions and 1 deletions
|
@ -1,5 +1,8 @@
|
|||
import { Command } from "../../../src/type/command";
|
||||
|
||||
export class name extends Command {
|
||||
|
||||
constructor() {
|
||||
super();
|
||||
this._category = "General";
|
||||
}
|
||||
}
|
8
tests/__mocks/commands/noCategory.ts
Normal file
8
tests/__mocks/commands/noCategory.ts
Normal file
|
@ -0,0 +1,8 @@
|
|||
import { Command } from "../../../src/type/command";
|
||||
|
||||
export class noCategory extends Command {
|
||||
constructor() {
|
||||
super();
|
||||
|
||||
}
|
||||
}
|
Reference in a new issue