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

[NodeToolV0] Migrated to Node10 #13872

Merged
merged 5 commits into from
Nov 13, 2020
Merged
Show file tree
Hide file tree
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/NodeToolV0/Tests/L0.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ describe('NodeTool Suite', function () {
}
}

it('Succeeds when the first download is available', (done: MochaDone) => {
it('Succeeds when the first download is available', (done: Mocha.Done) => {
this.timeout(5000);

let tp: string = path.join(__dirname, 'L0FirstDownloadSuccess.js');
Expand All @@ -31,7 +31,7 @@ describe('NodeTool Suite', function () {
}, tr, done);
});

it('Succeeds when the second download is available', (done: MochaDone) => {
it('Succeeds when the second download is available', (done: Mocha.Done) => {
this.timeout(5000);

let tp: string = path.join(__dirname, 'L0SecondDownloadSuccess.js');
Expand All @@ -45,7 +45,7 @@ describe('NodeTool Suite', function () {
}, tr, done);
});

it('Succeeds when the third download is available', (done: MochaDone) => {
it('Succeeds when the third download is available', (done: Mocha.Done) => {
this.timeout(5000);

let tp: string = path.join(__dirname, 'L0ThirdDownloadSuccess.js');
Expand All @@ -59,7 +59,7 @@ describe('NodeTool Suite', function () {
}, tr, done);
});

it('Removes "v" prefixes when evaluating latest version', (done: MochaDone) => {
it('Removes "v" prefixes when evaluating latest version', (done: Mocha.Done) => {
this.timeout(5000);

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