summaryrefslogtreecommitdiff
path: root/cli/js/compiler_api_test.ts
diff options
context:
space:
mode:
authorKitson Kelly <me@kitsonkelly.com>2020-02-07 17:54:05 +1100
committerGitHub <noreply@github.com>2020-02-07 01:54:05 -0500
commitea6179f7dce89416f1586ee18c2f437e68eabd38 (patch)
tree79a9416098b407af26f0745068a1310988eac98e /cli/js/compiler_api_test.ts
parent5a8ba3b114bbacf10f03abc0335a753585861c97 (diff)
Improve support for diagnostics from runtime compiler APIs (#3911)
- Exports diagnostic items from `diagnostics.ts` which are missing at runtime. - Returns an array of diagnostics, instead of an object with a property of `items`. This is because of the way Rust deals with certain structures, and shouldn't be exposed in the APIs.
Diffstat (limited to 'cli/js/compiler_api_test.ts')
-rw-r--r--cli/js/compiler_api_test.ts8
1 files changed, 8 insertions, 0 deletions
diff --git a/cli/js/compiler_api_test.ts b/cli/js/compiler_api_test.ts
index 8d7bf57d3..72b65ab5d 100644
--- a/cli/js/compiler_api_test.ts
+++ b/cli/js/compiler_api_test.ts
@@ -103,3 +103,11 @@ test(async function bundleApiConfig() {
assert(diagnostics == null);
assert(!actual.includes(`random`));
});
+
+test(async function diagnosticsTest() {
+ const [diagnostics] = await compile("/foo.ts", {
+ "/foo.ts": `document.getElementById("foo");`
+ });
+ assert(Array.isArray(diagnostics));
+ assert(diagnostics.length === 1);
+});