forked from open-wc/open-wc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.d.ts
More file actions
29 lines (24 loc) · 1.33 KB
/
Copy pathindex.d.ts
File metadata and controls
29 lines (24 loc) · 1.33 KB
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
26
27
28
29
/// <reference path="./register-chai-plugins.d.ts" />
export { html } from '@open-wc/testing-helpers/index.js';
export { unsafeStatic } from '@open-wc/testing-helpers/index.js';
export { triggerBlurFor } from '@open-wc/testing-helpers/index.js';
export { triggerFocusFor } from '@open-wc/testing-helpers/index.js';
export { oneEvent } from '@open-wc/testing-helpers/index.js';
export { isIE } from '@open-wc/testing-helpers/index.js';
export { defineCE } from '@open-wc/testing-helpers/index.js';
export { aTimeout } from '@open-wc/testing-helpers/index.js';
export { nextFrame } from '@open-wc/testing-helpers/index.js';
export { litFixture } from '@open-wc/testing-helpers/index.js';
export { litFixtureSync } from '@open-wc/testing-helpers/index.js';
export { fixture } from '@open-wc/testing-helpers/index.js';
export { fixtureSync } from '@open-wc/testing-helpers/index.js';
export { fixtureCleanup } from '@open-wc/testing-helpers/index.js';
export { elementUpdated } from '@open-wc/testing-helpers/index.js';
import chai from 'chai';
type expect = typeof chai.expect;
type assert = typeof chai.assert;
type should = typeof chai.should;
declare function expect(...args: Parameters<expect>): ReturnType<expect>;
declare const assert: assert;
declare function should(...args: Parameters<should>): ReturnType<should>;
export { expect, assert, should };