Skip to content

Commit 807069e

Browse files
authored
Merge pull request #2148 from github/koesie10/commands-package
Add commands package inside src directory
2 parents 1fa9767 + 555d99c commit 807069e

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)