Skip to content

Commit 77dd9bf

Browse files
committed
Add commands package inside src directory
1 parent 56111b3 commit 77dd9bf

3 files changed

Lines changed: 10 additions & 0 deletions

File tree

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export class CommandManager {}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from "./CommandManager";
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import { CommandManager } from "../../../../src/packages/commands";
2+
3+
describe(CommandManager.name, () => {
4+
it("can create a command manager", () => {
5+
const commandManager = new CommandManager();
6+
expect(commandManager).not.toBeUndefined();
7+
});
8+
});

0 commit comments

Comments
 (0)