-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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
Docker task using spn creds for authentication in ACR #4053
Merged
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,202 @@ | ||
// Generated by typings | ||
// Source: https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/a361a8ab3c327f208d3f82ad206971d4a63d8c25/mocha/mocha.d.ts | ||
interface MochaSetupOptions { | ||
//milliseconds to wait before considering a test slow | ||
slow?: number; | ||
|
||
// timeout in milliseconds | ||
timeout?: number; | ||
|
||
// ui name "bdd", "tdd", "exports" etc | ||
ui?: string; | ||
|
||
//array of accepted globals | ||
globals?: any[]; | ||
|
||
// reporter instance (function or string), defaults to `mocha.reporters.Spec` | ||
reporter?: any; | ||
|
||
// bail on the first test failure | ||
bail?: boolean; | ||
|
||
// ignore global leaks | ||
ignoreLeaks?: boolean; | ||
|
||
// grep string or regexp to filter tests with | ||
grep?: any; | ||
} | ||
|
||
declare var mocha: Mocha; | ||
declare var describe: Mocha.IContextDefinition; | ||
declare var xdescribe: Mocha.IContextDefinition; | ||
// alias for `describe` | ||
declare var context: Mocha.IContextDefinition; | ||
// alias for `describe` | ||
declare var suite: Mocha.IContextDefinition; | ||
declare var it: Mocha.ITestDefinition; | ||
declare var xit: Mocha.ITestDefinition; | ||
// alias for `it` | ||
declare var test: Mocha.ITestDefinition; | ||
declare var specify: Mocha.ITestDefinition; | ||
|
||
interface MochaDone { | ||
(error?: any): any; | ||
} | ||
|
||
interface ActionFunction { | ||
(done: MochaDone): any | PromiseLike<any> | ||
} | ||
|
||
declare function setup(action: ActionFunction): void; | ||
declare function teardown(action: ActionFunction): void; | ||
declare function suiteSetup(action: ActionFunction): void; | ||
declare function suiteTeardown(action: ActionFunction): void; | ||
declare function before(action: ActionFunction): void; | ||
declare function before(description: string, action: ActionFunction): void; | ||
declare function after(action: ActionFunction): void; | ||
declare function after(description: string, action: ActionFunction): void; | ||
declare function beforeEach(action: ActionFunction): void; | ||
declare function beforeEach(description: string, action: ActionFunction): void; | ||
declare function afterEach(action: ActionFunction): void; | ||
declare function afterEach(description: string, action: ActionFunction): void; | ||
|
||
declare class Mocha { | ||
currentTest: Mocha.ITestDefinition; | ||
constructor(options?: { | ||
grep?: RegExp; | ||
ui?: string; | ||
reporter?: string; | ||
timeout?: number; | ||
bail?: boolean; | ||
}); | ||
|
||
/** Setup mocha with the given options. */ | ||
setup(options: MochaSetupOptions): Mocha; | ||
bail(value?: boolean): Mocha; | ||
addFile(file: string): Mocha; | ||
/** Sets reporter by name, defaults to "spec". */ | ||
reporter(name: string): Mocha; | ||
/** Sets reporter constructor, defaults to mocha.reporters.Spec. */ | ||
reporter(reporter: (runner: Mocha.IRunner, options: any) => any): Mocha; | ||
ui(value: string): Mocha; | ||
grep(value: string): Mocha; | ||
grep(value: RegExp): Mocha; | ||
invert(): Mocha; | ||
ignoreLeaks(value: boolean): Mocha; | ||
checkLeaks(): Mocha; | ||
/** | ||
* Function to allow assertion libraries to throw errors directly into mocha. | ||
* This is useful when running tests in a browser because window.onerror will | ||
* only receive the 'message' attribute of the Error. | ||
*/ | ||
throwError(error: Error): void; | ||
/** Enables growl support. */ | ||
growl(): Mocha; | ||
globals(value: string): Mocha; | ||
globals(values: string[]): Mocha; | ||
useColors(value: boolean): Mocha; | ||
useInlineDiffs(value: boolean): Mocha; | ||
timeout(value: number): Mocha; | ||
slow(value: number): Mocha; | ||
enableTimeouts(value: boolean): Mocha; | ||
asyncOnly(value: boolean): Mocha; | ||
noHighlighting(value: boolean): Mocha; | ||
/** Runs tests and invokes `onComplete()` when finished. */ | ||
run(onComplete?: (failures: number) => void): Mocha.IRunner; | ||
} | ||
|
||
// merge the Mocha class declaration with a module | ||
declare namespace Mocha { | ||
/** Partial interface for Mocha's `Runnable` class. */ | ||
interface IRunnable { | ||
title: string; | ||
fn: Function; | ||
async: boolean; | ||
sync: boolean; | ||
timedOut: boolean; | ||
} | ||
|
||
/** Partial interface for Mocha's `Suite` class. */ | ||
interface ISuite { | ||
parent: ISuite; | ||
title: string; | ||
|
||
fullTitle(): string; | ||
} | ||
|
||
/** Partial interface for Mocha's `Test` class. */ | ||
interface ITest extends IRunnable { | ||
parent: ISuite; | ||
pending: boolean; | ||
|
||
fullTitle(): string; | ||
} | ||
|
||
/** Partial interface for Mocha's `Runner` class. */ | ||
interface IRunner {} | ||
|
||
interface IContextDefinition { | ||
(description: string, spec: () => void): ISuite; | ||
only(description: string, spec: () => void): ISuite; | ||
skip(description: string, spec: () => void): void; | ||
timeout(ms: number): void; | ||
} | ||
|
||
interface ITestDefinition { | ||
(expectation: string, assertion?: ActionFunction): ITest; | ||
only(expectation: string, assertion?: ActionFunction): ITest; | ||
skip(expectation: string, assertion?: ActionFunction): void; | ||
timeout(ms: number): void; | ||
state: "failed" | "passed"; | ||
} | ||
|
||
export module reporters { | ||
export class Base { | ||
stats: { | ||
suites: number; | ||
tests: number; | ||
passes: number; | ||
pending: number; | ||
failures: number; | ||
}; | ||
|
||
constructor(runner: IRunner); | ||
} | ||
|
||
export class Doc extends Base {} | ||
export class Dot extends Base {} | ||
export class HTML extends Base {} | ||
export class HTMLCov extends Base {} | ||
export class JSON extends Base {} | ||
export class JSONCov extends Base {} | ||
export class JSONStream extends Base {} | ||
export class Landing extends Base {} | ||
export class List extends Base {} | ||
export class Markdown extends Base {} | ||
export class Min extends Base {} | ||
export class Nyan extends Base {} | ||
export class Progress extends Base { | ||
/** | ||
* @param options.open String used to indicate the start of the progress bar. | ||
* @param options.complete String used to indicate a complete test on the progress bar. | ||
* @param options.incomplete String used to indicate an incomplete test on the progress bar. | ||
* @param options.close String used to indicate the end of the progress bar. | ||
*/ | ||
constructor(runner: IRunner, options?: { | ||
open?: string; | ||
complete?: string; | ||
incomplete?: string; | ||
close?: string; | ||
}); | ||
} | ||
export class Spec extends Base {} | ||
export class TAP extends Base {} | ||
export class XUnit extends Base { | ||
constructor(runner: IRunner, options?: any); | ||
} | ||
} | ||
} | ||
|
||
declare module "mocha" { | ||
export = Mocha; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"resolution": "main", | ||
"tree": { | ||
"src": "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/a361a8ab3c327f208d3f82ad206971d4a63d8c25/mocha/mocha.d.ts", | ||
"raw": "registry:dt/mocha#2.2.5+20160720003353", | ||
"typings": "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/a361a8ab3c327f208d3f82ad206971d4a63d8c25/mocha/mocha.d.ts" | ||
} | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Better to move it out.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As Subhu explained each module has there own typings.