-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathindex.js
25 lines (22 loc) · 903 Bytes
/
index.js
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
import { test, cover } from '../../../@netflix/x-test/x-test.js';
// We import this here so we can see code coverage.
import '../x-element.js';
// Set a high bar for code coverage!
cover(new URL('../x-element.js', import.meta.url).href, 100);
test('./test-analysis-errors.html');
test('./test-initialization-errors.html');
test('./test-attribute-changed-errors.html');
test('./test-element-upgrade.html');
test('./test-render.html');
test('./test-render-root.html');
test('./test-basic-properties.html');
test('./test-initial-properties.html');
test('./test-default-properties.html');
test('./test-read-only-properties.html');
test('./test-internal-properties.html');
test('./test-reflected-properties.html');
test('./test-computed-properties.html');
test('./test-observed-properties.html');
test('./test-listeners.html');
test('./test-scratch.html');
test('./test-custom-elements-everywhere.html');