Merge pull request #2148 from github/koesie10/commands-package
Add commands package inside src directory
This commit is contained in:
@@ -0,0 +1 @@
|
||||
export class CommandManager {}
|
||||
1
extensions/ql-vscode/src/packages/commands/index.ts
Normal file
1
extensions/ql-vscode/src/packages/commands/index.ts
Normal file
@@ -0,0 +1 @@
|
||||
export * from "./CommandManager";
|
||||
@@ -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();
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user