forked from open-wc/open-wc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.d.ts
25 lines (22 loc) · 1.12 KB
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/// <reference path="./register-chai-plugins.d.ts" />
export { html } from '@open-wc/testing-helpers';
export { unsafeStatic } from '@open-wc/testing-helpers';
export { triggerBlurFor } from '@open-wc/testing-helpers';
export { triggerFocusFor } from '@open-wc/testing-helpers';
export { oneEvent } from '@open-wc/testing-helpers';
export { isIE } from '@open-wc/testing-helpers';
export { defineCE } from '@open-wc/testing-helpers';
export { aTimeout } from '@open-wc/testing-helpers';
export { nextFrame } from '@open-wc/testing-helpers';
export { litFixture } from '@open-wc/testing-helpers';
export { litFixtureSync } from '@open-wc/testing-helpers';
export { fixture } from '@open-wc/testing-helpers';
export { fixtureSync } from '@open-wc/testing-helpers';
export { fixtureCleanup } from '@open-wc/testing-helpers';
export { elementUpdated } from '@open-wc/testing-helpers';
export { waitUntil } from '@open-wc/testing-helpers';
import Chai from 'chai';
export declare const chai: typeof Chai;
export declare const expect: typeof Chai.expect;
export declare const assert: typeof Chai.assert;
export declare const should: typeof Chai.should;