sleeveforarm
Version:
Making Azure Easy
23 lines (18 loc) • 698 B
text/typescript
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() {
[] = await TestUtilities.setupMochaTestLogging(this);
});
afterEach(async function() {
await TestUtilities.tearDownMochaTestLogging([], "foo", this);
});
// it.skip("deployment test", async function() {
// await Cli.deployResources("c:\\temp\\bar");
// });
});