summaryrefslogtreecommitdiff
path: root/js/compiler_test.ts
diff options
context:
space:
mode:
authorKitson Kelly <me@kitsonkelly.com>2018-09-01 07:45:26 -0700
committerRyan Dahl <ry@tinyclouds.org>2018-09-01 10:45:26 -0400
commitf83aee02e66214853a008ebe4b5141405ac3a950 (patch)
tree4e95505f445d841e943da72e0db8364aaf92e9c9 /js/compiler_test.ts
parent89dddca3b4865fe4496f51680c70547e65c272eb (diff)
Bundle most types into globals.d.ts (#642)
Diffstat (limited to 'js/compiler_test.ts')
-rw-r--r--js/compiler_test.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/compiler_test.ts b/js/compiler_test.ts
index 2fb67ab3b..18c2d16cc 100644
--- a/js/compiler_test.ts
+++ b/js/compiler_test.ts
@@ -474,7 +474,7 @@ test(function compilerFileExists() {
"/root/project"
);
assert(compilerInstance.fileExists(moduleMetaData.fileName));
- assert(compilerInstance.fileExists("$asset$/compiler.d.ts"));
+ assert(compilerInstance.fileExists("$asset$/globals.d.ts"));
assertEqual(
compilerInstance.fileExists("/root/project/unknown-module.ts"),
false
@@ -493,7 +493,7 @@ test(function compilerResolveModuleNames() {
["/root/project/foo/bar.ts", false],
["/root/project/foo/baz.ts", false],
["$asset$/lib.globals.d.ts", true],
- ["$asset$/deno.d.ts", true]
+ ["$asset$/globals.d.ts", true]
];
for (let i = 0; i < results.length; i++) {
const result = results[i];