From 97dc2918fdbf1996f3647563a2fb7e946dcfd83a Mon Sep 17 00:00:00 2001 From: Kitson Kelly Date: Thu, 25 Mar 2021 22:09:03 +1100 Subject: [PATCH] fix(cli): re-add dom.asynciterable lib (#9888) Fixes: #9881 --- cli/tests/integration_tests.rs | 5 +++++ cli/tsc/00_typescript.js | 1 + 2 files changed, 6 insertions(+) diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs index e7fc7797b1..1dd0c5a544 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -3254,6 +3254,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", diff --git a/cli/tsc/00_typescript.js b/cli/tsc/00_typescript.js index e95b4fd6d4..111c499ab3 100644 --- a/cli/tsc/00_typescript.js +++ b/cli/tsc/00_typescript.js @@ -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"],