mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 19:07:08 +00:00
Merge pull request #14481 from noomorph/master
jasmine: added keyof validation to spyOn
This commit is contained in:
commit
4aef98b61f
1
jasmine-es6-promise-matchers/index.d.ts
vendored
1
jasmine-es6-promise-matchers/index.d.ts
vendored
@ -2,6 +2,7 @@
|
||||
// Project: https://github.com/bvaughn/jasmine-es6-promise-matchers
|
||||
// Definitions by: Stephen Lautier <https://github.com/stephenlautier>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
// TypeScript Version: 2.1
|
||||
|
||||
/// <reference types="jasmine" />
|
||||
|
||||
|
||||
1
jasmine-expect/index.d.ts
vendored
1
jasmine-expect/index.d.ts
vendored
@ -2,6 +2,7 @@
|
||||
// Project: https://github.com/JamieMason/Jasmine-Matchers
|
||||
// Definitions by: UserPixel <https://github.com/UserPixel>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
// TypeScript Version: 2.1
|
||||
|
||||
/// <reference types="jasmine" />
|
||||
|
||||
|
||||
1
jasmine-jquery/index.d.ts
vendored
1
jasmine-jquery/index.d.ts
vendored
@ -2,6 +2,7 @@
|
||||
// Project: https://github.com/velesin/jasmine-jquery
|
||||
// Definitions by: Gregor Stamac <https://github.com/gstamac/>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
// TypeScript Version: 2.1
|
||||
|
||||
/// <reference types="jasmine"/>
|
||||
/// <reference types="jquery"/>
|
||||
|
||||
1
jasmine-matchers/index.d.ts
vendored
1
jasmine-matchers/index.d.ts
vendored
@ -2,6 +2,7 @@
|
||||
// Project: https://github.com/uxebu/jasmine-matchers
|
||||
// Definitions by: Bart van der Schoor <https://github.com/Bartvds>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
// TypeScript Version: 2.1
|
||||
|
||||
/*
|
||||
Typings 2013 Bart van der Schoor
|
||||
|
||||
1
jasmine-node/index.d.ts
vendored
1
jasmine-node/index.d.ts
vendored
@ -2,6 +2,7 @@
|
||||
// Project: https://github.com/mhevery/jasmine-node
|
||||
// Definitions by: Sven Reglitzki <https://github.com/svi3c/>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
// TypeScript Version: 2.1
|
||||
|
||||
///<reference types="jasmine"/>
|
||||
|
||||
|
||||
1
jasmine-promise-matchers/index.d.ts
vendored
1
jasmine-promise-matchers/index.d.ts
vendored
@ -2,6 +2,7 @@
|
||||
// Project: https://github.com/bvaughn/jasmine-promise-matchers
|
||||
// Definitions by: Matthew Hill <https://github.com/matthewjh>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
// TypeScript Version: 2.1
|
||||
|
||||
/// <reference types="jasmine" />
|
||||
|
||||
|
||||
3
jasmine/index.d.ts
vendored
3
jasmine/index.d.ts
vendored
@ -2,6 +2,7 @@
|
||||
// Project: http://jasmine.github.io/
|
||||
// Definitions by: Boris Yankov <https://github.com/borisyankov/>, Theodore Brown <https://github.com/theodorejb>, David Pärsson <https://github.com/davidparsson/>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
// TypeScript Version: 2.1
|
||||
|
||||
|
||||
// For ddescribe / iit use : https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/karma-jasmine/karma-jasmine.d.ts
|
||||
@ -35,7 +36,7 @@ interface DoneFn extends Function {
|
||||
fail: (message?: Error|string) => void;
|
||||
}
|
||||
|
||||
declare function spyOn(object: any, method: string): jasmine.Spy;
|
||||
declare function spyOn<T>(object: T, method: keyof T): jasmine.Spy;
|
||||
|
||||
declare function runs(asyncMethod: Function): void;
|
||||
declare function waitsFor(latchMethod: () => boolean, failureMessage?: string, timeout?: number): void;
|
||||
|
||||
1
jasminewd2/index.d.ts
vendored
1
jasminewd2/index.d.ts
vendored
@ -2,6 +2,7 @@
|
||||
// Project: https://github.com/angular/jasminewd
|
||||
// Definitions by: Sammy Jelin <https://github.com/sjelin>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
// TypeScript Version: 2.1
|
||||
|
||||
/// <reference types="jasmine" />
|
||||
|
||||
|
||||
1
karma-jasmine/index.d.ts
vendored
1
karma-jasmine/index.d.ts
vendored
@ -2,6 +2,7 @@
|
||||
// Project: https://github.com/karma-runner/karma-jasmine
|
||||
// Definitions by: Michel Salib <https://github.com/michelsalib>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
// TypeScript Version: 2.1
|
||||
|
||||
/// <reference types="jasmine" />
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user