Skip to content

Commit

Permalink
[MSBuildV1] Migrated to NodeJS 10 (#13898)
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergey Dobrodeev authored Nov 17, 2020
1 parent f4135a8 commit 57c407b
Show file tree
Hide file tree
Showing 13 changed files with 448 additions and 4,083 deletions.
10 changes: 5 additions & 5 deletions Tasks/MSBuildV1/Tests/L0.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ var psr = null;

describe('MSBuild Suite', function () {
this.timeout(parseInt(process.env.TASK_TEST_TIMEOUT) || 20000);
before((done) => {
before((done: Mocha.Done) => {
if (psm.testSupported()) {
psr = new psm.PSRunner();
psr.start();
Expand All @@ -22,12 +22,12 @@ describe('MSBuild Suite', function () {
});

if (psm.testSupported()) {
it('passes arguments', (done) => {
it('passes arguments', (done: Mocha.Done) => {
psr.run(path.join(__dirname, 'PassesArguments.ps1'), done);
})
}

it('Xplat MSBuild: Defaults', (done: MochaDone) => {
it('Xplat MSBuild: Defaults', (done: Mocha.Done) => {
this.timeout(1000);

let tp: string = path.join(__dirname, 'L0MSBuildDefaults.js');
Expand All @@ -46,7 +46,7 @@ describe('MSBuild Suite', function () {
done();
});

it('Xplat MSBuild: Clean and Build', (done: MochaDone) => {
it('Xplat MSBuild: Clean and Build', (done: Mocha.Done) => {
this.timeout(1000);

let tp: string = path.join(__dirname, 'L0MSBuildClean.js');
Expand All @@ -69,7 +69,7 @@ describe('MSBuild Suite', function () {
done();
});

it('Xplat MSBuild: Multiple solutions', (done: MochaDone) => {
it('Xplat MSBuild: Multiple solutions', (done: Mocha.Done) => {
this.timeout(1000);

let tp: string = path.join(__dirname, 'L0MSBuildMultipleSolutions.js');
Expand Down
Loading

0 comments on commit 57c407b

Please sign in to comment.