TypeScript/tests/cases/fourslash/codeFixCannotFindModule.ts
Andy 19993a5408
When import("foo") has module resolution error, error span should be "foo" (#25569)
* When `import("foo")` has module resolution error, error span should be "foo"

* Update more tests
2018-07-11 10:06:08 -07:00

31 lines
590 B
TypeScript

/// <reference path='fourslash.ts' />
// @moduleResolution: node
// @noImplicitAny: true
// @Filename: /node_modules/abs/index.js
////not read
// @Filename: /a.ts
////import * as abs from "abs";
////abs;
// @Filename: /b.ts
////const x: import("abs").T = 0;
test.setTypesRegistry({
"abs": undefined,
});
for (const file of ["/a.ts", "/b.ts"]) {
goTo.file(file);
verify.codeFixAvailable([{
description: "Install '@types/abs'",
commands: [{
type: "install package",
file,
packageName: "@types/abs",
}],
}]);
}