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

[InstallAppleProvisioningProfileV1] Migrated to Node10 #13730

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
14 changes: 7 additions & 7 deletions Tasks/InstallAppleProvisioningProfileV1/Tests/L0.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ describe('InstallAppleProvisioningProfile Suite', function () {
after(() => {
});

it('Defaults: install from SecureFile', (done: MochaDone) => {
it('Defaults: install from SecureFile', (done: Mocha.Done) => {
this.timeout(1000);

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

it('Install from source repository', (done: MochaDone) => {
it('Install from source repository', (done: Mocha.Done) => {
this.timeout(1000);

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

it('Install from source repository fails if provisioning profile is not found', (done: MochaDone) => {
it('Install from source repository fails if provisioning profile is not found', (done: Mocha.Done) => {
this.timeout(1000);

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

it('Install profile file with no file extension', (done: MochaDone) => {
it('Install profile file with no file extension', (done: Mocha.Done) => {
this.timeout(1000);

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

it('Remove profile during post execution', (done: MochaDone) => {
it('Remove profile during post execution', (done: Mocha.Done) => {
this.timeout(1000);

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

it('Fails on windows', (done: MochaDone) => {
it('Fails on windows', (done: Mocha.Done) => {
this.timeout(1000);

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

it('postexecution should not fail for errors', function (done: MochaDone) {
it('postexecution should not fail for errors', function (done: Mocha.Done) {
this.timeout(1000);

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

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@
},
"homepage": "https://github.com/Microsoft/azure-pipelines-tasks#readme",
"devDependencies": {
"@types/mocha": "^5.2.0"
"@types/mocha": "^5.2.7"
}
}
Loading