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