Skip to content

Commit

Permalink
fix(cli): re-add dom.asynciterable lib (#9888)
Browse files Browse the repository at this point in the history
Fixes: #9881
  • Loading branch information
kitsonk committed Mar 25, 2021
1 parent 5ebb401 commit 881e1e8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
5 changes: 5 additions & 0 deletions cli/tests/integration_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3259,6 +3259,11 @@ console.log("finish");
output: "runtime_decorators.ts.out",
});

itest!(lib_dom_asynciterable {
args: "run --quiet --unstable --reload lib_dom_asynciterable.ts",
output: "lib_dom_asynciterable.ts.out",
});

itest!(lib_ref {
args: "run --quiet --unstable --reload lib_ref.ts",
output: "lib_ref.ts.out",
Expand Down
1 change: 1 addition & 0 deletions cli/tsc/00_typescript.js
Original file line number Diff line number Diff line change
Expand Up @@ -36112,6 +36112,7 @@ var ts;
["es2020", "lib.es2020.d.ts"],
["esnext", "lib.esnext.d.ts"],
// Host only
["dom.asynciterable", "lib.dom.asynciterable.d.ts"],
["dom", "lib.dom.d.ts"],
["dom.iterable", "lib.dom.iterable.d.ts"],
["webworker", "lib.webworker.d.ts"],
Expand Down

0 comments on commit 881e1e8

Please sign in to comment.