Update sinon-chai.d.ts

declare module chai {
    interface Expect {
callCount(count: number): Expect;
  }
}

Added --> callCount(count: number): Expect;
This commit is contained in:
Armando Garcia
2015-03-24 09:38:37 -05:00
parent bba34156c1
commit a565c4ed68

View File

@@ -11,6 +11,7 @@ declare module chai {
calledOnce: Expect;
calledTwice: Expect;
calledThrice: Expect;
callCount(count: number): Expect;
calledBefore(spy: Function): Expect;
calledAfter(spy: Function): Expect;
calledWithNew: Expect;