Merge pull request #27331 from Microsoft/fixTypesVersionsFourslashTest-2

Fixes the completionForStringLiteralNonrelativeImport13 test
This commit is contained in:
Ron Buckton 2018-09-24 17:38:17 -07:00 committed by GitHub
commit 6957128341
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -8,7 +8,7 @@
//// "version": "1.0.0",
//// "types": "index",
//// "typesVersions": {
//// "3.0": { "*" : ["ts3.0/*"] }
//// ">=3.1.0-0": { "*" : ["ts3.1/*"] }
//// }
//// }
@ -18,10 +18,10 @@
// @Filename: node_modules/ext/aaa.d.ts
//// export {};
// @Filename: node_modules/ext/ts3.0/index.d.ts
// @Filename: node_modules/ext/ts3.1/index.d.ts
//// export {};
// @Filename: node_modules/ext/ts3.0/zzz.d.ts
// @Filename: node_modules/ext/ts3.1/zzz.d.ts
//// export {};
// @Filename: main.ts
@ -31,6 +31,6 @@
verify.completions({
marker: test.markerNames(),
exact: ["aaa", "index", "ts3.0", "zzz"],
exact: ["aaa", "index", "ts3.1", "zzz"],
isNewIdentifierLocation: true,
});