UNPKG

396 BTypeScriptView Raw
1/// <reference types="chai" />
2/// <reference types="sinon" />
3/// <reference types="sinon-chai" />
4
5import "karma";
6
7declare module "karma" {
8 interface ClientOptions {
9 /**
10 * chai config
11 */
12 chai?: Partial<Chai.Config> | undefined;
13 }
14}
15
16declare global {
17 const should: Chai.Should;
18 const expect: Chai.ExpectStatic;
19 const assert: Chai.Assert;
20}