Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ARMTemplateDeployTask: Commented out an L0 #11412

Merged
merged 2 commits into from
Sep 24, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Tasks/AzureResourceManagerTemplateDeploymentV3/Tests/L0.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ function setResponseFile(name) {
process.env['MOCK_RESPONSES'] = path.join(__dirname, name);
}

describe('Azure Resource Group Deployment', function () {
describe('Azure Resource Manager Template Deployment', function () {
this.timeout(30000);
before((done) => {
done();
Expand All @@ -21,10 +21,10 @@ describe('Azure Resource Group Deployment', function () {
process.env['SYSTEM_DEFAULTWORKINGDIRECTORY'] = process.env['SYSTEM_DEFAULTWORKINGDIRECTORY'] || "C:\\temp\\agent\\home";
process.env["AGENT_TEMPDIRECTORY"] = process.env["AGENT_TEMPDIRECTORY"] || "C:\\temp\\agent\\home\\temp";

// uncomment to get test traces
// uncomment to get test traces
// process.env['TASK_TEST_TRACE'] = "1";

it('Successfully triggered createOrUpdate deployment', (done) => {
/*it('Successfully triggered createOrUpdate deployment', (done) => {
let tp = path.join(__dirname, 'createOrUpdate.js');
process.env["csmFile"] = "CSM.json";
process.env["csmParametersFile"] = "CSM.json";
Expand All @@ -42,7 +42,7 @@ describe('Azure Resource Group Deployment', function () {
console.log("STDOUT", tr.stdout);
done(error);
}
});
});*/
it('Successfully triggered createOrUpdate deployment and updated deploymentOutputs', (done) => {
let tp = path.join(__dirname, 'createOrUpdate.js');
process.env["csmFile"] = "CSM.json";
Expand Down