53 lines
1.3 KiB
Go
53 lines
1.3 KiB
Go
package fourslash_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/fourslash"
|
|
. "efprojects.com/kitten-ipc/kitcom/internal/tsgo/fourslash/tests/util"
|
|
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/ls"
|
|
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/lsp/lsproto"
|
|
"efprojects.com/kitten-ipc/kitcom/internal/tsgo/testutil"
|
|
)
|
|
|
|
func TestJavaScriptModules14(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
|
const content = `// @allowJs: true
|
|
// @Filename: myMod.js
|
|
if (true) {
|
|
exports.b = true;
|
|
} else {
|
|
exports.n = 3;
|
|
}
|
|
function fn() {
|
|
exports.s = 'foo';
|
|
}
|
|
var invisible = true;
|
|
// @Filename: isGlobal.js
|
|
var y = 10;
|
|
// @Filename: consumer.js
|
|
var x = require('myMod');
|
|
/**/;`
|
|
f := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
|
f.VerifyCompletions(t, "", &fourslash.CompletionsExpectedList{
|
|
IsIncomplete: false,
|
|
ItemDefaults: &fourslash.CompletionsExpectedItemDefaults{
|
|
CommitCharacters: &DefaultCommitCharacters,
|
|
EditRange: Ignored,
|
|
},
|
|
Items: &fourslash.CompletionsExpectedItems{
|
|
Includes: []fourslash.CompletionsExpectedItem{
|
|
&lsproto.CompletionItem{
|
|
Label: "y",
|
|
SortText: PtrTo(string(ls.SortTextGlobalsOrKeywords)),
|
|
},
|
|
},
|
|
Excludes: []string{
|
|
"invisible",
|
|
},
|
|
},
|
|
})
|
|
}
|