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");
    // });
});
