addressed PR feedback

This commit is contained in:
Vladimir Matveev
2015-08-18 14:52:21 -07:00
parent 049a5fba07
commit f415097d0d
2 changed files with 5 additions and 43 deletions

View File

@@ -253,7 +253,6 @@ module ts {
assert.deepEqual(resolution.failedLookupLocations, expectedFailedLookupLocations)
}
test("/a/b/c/d.ts", "/foo.ts", "/foo.ts");
test("/a/b/c/d.ts", "/foo.ts", "/foo");
test("/a/b/c/d.ts", "/foo.d.ts", "/foo");
test("/a/b/c/d.ts", "/foo.tsx", "/foo");
@@ -265,10 +264,6 @@ module ts {
test("/a/b/c/d.ts", "/a/b/foo.ts", "../foo");
test("/a/b/c/d.ts", "/a/b/foo.d.ts", "../foo");
test("/a/b/c/d.ts", "/a/b/foo.tsx", "../foo");
test("/a/b/c/d.ts", "/a/b/c/foo.ts", "foo.ts");
test("/a/b/c/d.ts", "/a/b/c/foo.tsx", "foo.tsx");
test("/a/b/c/d.ts", "/a/b/c/foo.d.ts", "foo.d.ts");
});
it ("load module using base url", () => {