Merge pull request #2148 from github/koesie10/commands-package

Add commands package inside src directory
This commit is contained in:
Koen Vlaswinkel
2023-03-10 10:32:32 +01:00
committed by GitHub
3 changed files with 10 additions and 0 deletions

View File

@@ -0,0 +1 @@
export class CommandManager {}

View File

@@ -0,0 +1 @@
export * from "./CommandManager";

View File

@@ -0,0 +1,8 @@
import { CommandManager } from "../../../../src/packages/commands";
describe(CommandManager.name, () => {
it("can create a command manager", () => {
const commandManager = new CommandManager();
expect(commandManager).not.toBeUndefined();
});
});