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

[MavenAuthenticateV0] Migrated to Node10 #15322

Merged
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/MavenAuthenticateV0/Tests/L0.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ describe("authenticate azure artifacts feeds for maven", function() {
done();
});

it("it should read the existing settings.xml and add auth for 1 new feed", (done: MochaDone) => {
it("it should read the existing settings.xml and add auth for 1 new feed", (done: Mocha.Done) => {
this.timeout(1000);

let tp: string = path.join(__dirname, "L0AuthSettingsXmlExists.js");
Expand Down Expand Up @@ -90,7 +90,7 @@ describe("authenticate azure artifacts feeds for maven", function() {
done();
});

it("it should read the existing settings.xml and not add any new entries.", (done: MochaDone) => {
it("it should read the existing settings.xml and not add any new entries.", (done: Mocha.Done) => {
this.timeout(1000);

let tp: string = path.join(__dirname, "L0AuthSettingsXmlExists.js");
Expand Down Expand Up @@ -118,7 +118,7 @@ describe("authenticate azure artifacts feeds for maven", function() {
done();
});

it("it should create a new settings.xml in the .m2 folder and add auth for 3 different types of service connections.", (done: MochaDone) => {
it("it should create a new settings.xml in the .m2 folder and add auth for 3 different types of service connections.", (done: Mocha.Done) => {
this.timeout(1000);

let tp: string = path.join(__dirname, "L0ServiceConnections.js");
Expand Down Expand Up @@ -155,7 +155,7 @@ describe("authenticate azure artifacts feeds for maven", function() {
done();
});

it("it should warn if no inputs are provided.", (done: MochaDone) => {
it("it should warn if no inputs are provided.", (done: Mocha.Done) => {
this.timeout(1000);

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