Skip to content

Commit

Permalink
[NodeToolV0] Migrated to Node10 (#13872)
Browse files Browse the repository at this point in the history
* updated dependencies

* removed typings

* changed execution handler to Node10

* updated mocha

* updated tasklib and toollib versions
  • Loading branch information
DaniilShmelev authored Nov 13, 2020
1 parent 32e891b commit cc2d7c3
Show file tree
Hide file tree
Showing 6 changed files with 399 additions and 65 deletions.
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

0 comments on commit cc2d7c3

Please sign in to comment.