UNPKG

sleeveforarm

Version:
23 lines (18 loc) 698 B
import * as Path from "path"; import * as CommonUtilities from "../src/common-utilities"; import * as TestUtilities from "./testUtilities"; describe("Cli Tests", () => { before(async () => { await CommonUtilities.exec("npm link", Path.join(__dirname, "..")); }); let testingDirFullPath: string; beforeEach(async function() { [testingDirFullPath] = await TestUtilities.setupMochaTestLogging(this); }); afterEach(async function() { await TestUtilities.tearDownMochaTestLogging([], "foo", this); }); // it.skip("deployment test", async function() { // await Cli.deployResources("c:\\temp\\bar"); // }); });