TypeScript/tests/cases/compiler/modularizeLibrary_Dom.iterable.ts
Wesley Wigham 25c3b99f29 Add skip lib check to many tests (#18935)
* Add skip lib check to many tests, do not include unit test duration in profiler duration

* Add a few more skipLibCheck flags

* A few more

* Add more skip lib check flags
2017-10-04 13:14:05 -07:00

7 lines
158 B
TypeScript

// @skipLibCheck: true
// @lib: es6,dom,dom.iterable
// @target: es6
for (const element of document.getElementsByTagName("a")) {
element.href;
}