mirror of
https://github.com/azure/login.git
synced 2026-06-08 01:47:21 +00:00
* Bump lodash from 4.17.15 to 4.17.19 (#52) Bumps [lodash](https://github.com/lodash/lodash) from 4.17.15 to 4.17.19. - [Release notes](https://github.com/lodash/lodash/releases) - [Commits](https://github.com/lodash/lodash/compare/4.17.15...4.17.19) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Amruta Kawade <65217380+AmrutaKawade@users.noreply.github.com> * Bump @actions/core from 1.1.3 to 1.2.6 (#60) Bumps [@actions/core](https://github.com/actions/toolkit/tree/HEAD/packages/core) from 1.1.3 to 1.2.6. - [Release notes](https://github.com/actions/toolkit/releases) - [Changelog](https://github.com/actions/toolkit/blob/main/packages/core/RELEASES.md) - [Commits](https://github.com/actions/toolkit/commits/HEAD/packages/core) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Amruta Kawade <65217380+AmrutaKawade@users.noreply.github.com> * updating node_nodules * updated package-lock Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
43 lines
2.5 KiB
TypeScript
43 lines
2.5 KiB
TypeScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
*/
|
|
import { AssertionErrorWithStack, Jasmine, Reporter, Spy } from '../types';
|
|
import { default as Spec } from './Spec';
|
|
import Suite from './Suite';
|
|
export default function (j$: Jasmine): {
|
|
new (_options?: object | undefined): {
|
|
specFilter: (spec: Spec) => boolean;
|
|
catchExceptions: (value: unknown) => boolean;
|
|
throwOnExpectationFailure: (value: unknown) => void;
|
|
catchingExceptions: () => boolean;
|
|
topSuite: () => Suite;
|
|
fail: (error: Error | AssertionErrorWithStack) => void;
|
|
pending: (message: string) => void;
|
|
afterAll: (afterAllFunction: (done: (error?: any) => void) => void, timeout?: number | undefined) => void;
|
|
fit: (description: string, fn: (done: (error?: any) => void) => void, timeout?: number | undefined) => Spec;
|
|
throwingExpectationFailures: () => boolean;
|
|
randomizeTests: (value: unknown) => void;
|
|
randomTests: () => boolean;
|
|
seed: (value: unknown) => unknown;
|
|
execute: (runnablesToRun?: string[] | undefined, suiteTree?: Suite | undefined) => Promise<void>;
|
|
fdescribe: (description: string, specDefinitions: Function) => Suite;
|
|
spyOn: (obj: Record<string, any>, methodName: string, accessType?: "configurable" | "enumerable" | "value" | "writable" | "get" | "set" | undefined) => Spy;
|
|
beforeEach: (beforeEachFunction: (done: (error?: any) => void) => void, timeout?: number | undefined) => void;
|
|
afterEach: (afterEachFunction: (done: (error?: any) => void) => void, timeout?: number | undefined) => void;
|
|
clearReporters: () => void;
|
|
addReporter: (reporterToAdd: Reporter) => void;
|
|
it: (description: string, fn: (done: (error?: any) => void) => void, timeout?: number | undefined) => Spec;
|
|
xdescribe: (description: string, specDefinitions: Function) => Suite;
|
|
xit: (description: string, fn: (done: (error?: any) => void) => void, timeout?: number | undefined) => Spec;
|
|
beforeAll: (beforeAllFunction: (done: (error?: any) => void) => void, timeout?: number | undefined) => void;
|
|
todo: () => Spec;
|
|
provideFallbackReporter: (reporterToAdd: Reporter) => void;
|
|
allowRespy: (allow: boolean) => void;
|
|
describe: (description: string, specDefinitions: Function) => Suite;
|
|
};
|
|
};
|
|
//# sourceMappingURL=Env.d.ts.map
|