TypeScript/tests/cases/fourslash/completionInUncheckedJSFile.ts
Ben Lichtman 509d243ea5 Add test
2020-01-07 13:07:52 -08:00

28 lines
581 B
TypeScript

/// <reference path="fourslash.ts" />
// @allowJs: true
// @checkJs: false
// @Filename: index.js
////function hello() {
////
////}
////
////const goodbye = 5;
////
////console./*0*/
verify.completions({
marker: "0",
includes: [
{
name: "hello",
sortText: completion.SortText.JavascriptIdentifiers,
isFromUncheckedFile: true
},
{
name: "goodbye",
sortText: completion.SortText.JavascriptIdentifiers,
isFromUncheckedFile: true
}
]
});