mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-09 11:13:57 +08:00
Update reference paths
This commit is contained in:
Vendored
+9
-9
@@ -29,7 +29,7 @@ declare module jasmine {
|
||||
var Clock: Clock;
|
||||
|
||||
function any(aclass: any);
|
||||
function createSpy(name: string): any;
|
||||
function createSpy(name: string): any;
|
||||
function createSpyObj(baseName: string, methodNames: any[]): any;
|
||||
|
||||
function getEnv(): Env;
|
||||
@@ -230,16 +230,16 @@ declare module jasmine {
|
||||
}
|
||||
|
||||
interface Spy {
|
||||
identity: string;
|
||||
calls: any[];
|
||||
mostRecentCall: { args: any[]; };
|
||||
argsForCall: any[];
|
||||
wasCalled: bool;
|
||||
identity: string;
|
||||
calls: any[];
|
||||
mostRecentCall: { args: any[]; };
|
||||
argsForCall: any[];
|
||||
wasCalled: bool;
|
||||
callCount: number;
|
||||
|
||||
andReturn(value): void;
|
||||
andCallThrough(): void;
|
||||
andCallFake(fakeFunc: Function): void;
|
||||
andReturn(value): void;
|
||||
andCallThrough(): void;
|
||||
andCallFake(fakeFunc: Function): void;
|
||||
}
|
||||
|
||||
interface Suite {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/// <reference path="../Definitions/jasmine-1.2.d.ts" />
|
||||
/// <reference path="jasmine-1.2.d.ts" />
|
||||
|
||||
describe("A suite", () => {
|
||||
it("contains spec with an expectation", () => {
|
||||
|
||||
Reference in New Issue
Block a user