-
Notifications
You must be signed in to change notification settings - Fork 12.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🤖 Pick PR #59195 (Added affectsSourceFile to importHe...) into releas…
…e-5.5 (#59231) Co-authored-by: Armando Aguirre <[email protected]>
- Loading branch information
1 parent
315f9f9
commit 3a7983a
Showing
6 changed files
with
972 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
import * as ts from "../../_namespaces/ts.js"; | ||
import { jsonToReadableText } from "../helpers.js"; | ||
import { | ||
baselineTsserverLogs, | ||
openFilesForSession, | ||
TestSession, | ||
} from "../helpers/tsserver.js"; | ||
import { createServerHost } from "../helpers/virtualFileSystemWithWatch.js"; | ||
|
||
describe("unittests:: tsserver:: projectImportHelpers::", () => { | ||
it("import helpers sucessfully", () => { | ||
const type1 = { | ||
path: "/a/type.ts", | ||
content: ` | ||
export type Foo { | ||
bar: number; | ||
};`, | ||
}; | ||
const file1 = { | ||
path: "/a/file1.ts", | ||
content: ` | ||
import { Foo } from "./type"; | ||
const a: Foo = { bar : 1 }; | ||
a.bar;`, | ||
}; | ||
const file2 = { | ||
path: "/a/file2.ts", | ||
content: ` | ||
import { Foo } from "./type"; | ||
const a: Foo = { bar : 2 }; | ||
a.bar;`, | ||
}; | ||
|
||
const config1 = { | ||
path: "/a/tsconfig.json", | ||
content: jsonToReadableText({ | ||
extends: "../tsconfig.json", | ||
compilerOptions: { | ||
importHelpers: true, | ||
}, | ||
}), | ||
}; | ||
|
||
const file3 = { | ||
path: "/file3.js", | ||
content: "console.log('noop');", | ||
}; | ||
const config2 = { | ||
path: "/tsconfig.json", | ||
content: jsonToReadableText({ | ||
include: ["**/*"], | ||
}), | ||
}; | ||
|
||
const host = createServerHost([config2, config1, type1, file1, file2, file3]); | ||
const session = new TestSession(host); | ||
|
||
openFilesForSession([file3, file1], session); | ||
|
||
session.executeCommandSeq<ts.server.protocol.ReferencesRequest>({ | ||
command: ts.server.protocol.CommandTypes.References, | ||
arguments: { | ||
file: file1.path, | ||
line: 4, | ||
offset: 3, | ||
}, | ||
}); | ||
|
||
baselineTsserverLogs("importHelpers", "import helpers successfully", session); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.