import { expect, should } from 'chai'; import 'mocha'; import {CommandController} from '../../main/controller/commandController' describe("CommandController - specification", () => { it("should instantiate properly", () => { const controller = new CommandController(); controller.printAllCommandsOf("Indexer"); }); });