65 lines
1.8 KiB
Go
65 lines
1.8 KiB
Go
package fourslash_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/microsoft/typescript-go/internal/fourslash"
|
|
. "github.com/microsoft/typescript-go/internal/fourslash/tests/util"
|
|
"github.com/microsoft/typescript-go/internal/testutil"
|
|
)
|
|
|
|
func TestTripleSlashRefPathCompletionAbsolutePaths(t *testing.T) {
|
|
t.Parallel()
|
|
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
|
const content = `// @Filename: /tests/cases/fourslash/tests/test0.ts
|
|
/// <reference path="/tests/cases/f/*0*/
|
|
// @Filename: /tests/cases/fourslash/tests/test1.ts
|
|
/// <reference path="/tests/cases/fourslash/*1*/
|
|
// @Filename: /tests/cases/fourslash/tests/test2.ts
|
|
/// <reference path="/tests/cases/fourslash//*2*/
|
|
// @Filename: /tests/cases/fourslash/f1.ts
|
|
/*f1*/
|
|
// @Filename: /tests/cases/fourslash/f2.tsx
|
|
/*f2*/
|
|
// @Filename: /tests/cases/fourslash/folder/f1.ts
|
|
/*subf1*/
|
|
// @Filename: /tests/cases/fourslash/f3.js
|
|
/*f3*/
|
|
// @Filename: /tests/cases/fourslash/f4.jsx
|
|
/*f4*/
|
|
// @Filename: /tests/cases/fourslash/e1.ts
|
|
/*e1*/
|
|
// @Filename: /tests/cases/fourslash/e2.js
|
|
/*e2*/`
|
|
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
|
defer done()
|
|
f.VerifyCompletions(t, []string{"0", "1"}, &fourslash.CompletionsExpectedList{
|
|
IsIncomplete: false,
|
|
ItemDefaults: &fourslash.CompletionsExpectedItemDefaults{
|
|
CommitCharacters: &[]string{},
|
|
EditRange: Ignored,
|
|
},
|
|
Items: &fourslash.CompletionsExpectedItems{
|
|
Exact: []fourslash.CompletionsExpectedItem{
|
|
"fourslash",
|
|
},
|
|
},
|
|
})
|
|
f.VerifyCompletions(t, "2", &fourslash.CompletionsExpectedList{
|
|
IsIncomplete: false,
|
|
ItemDefaults: &fourslash.CompletionsExpectedItemDefaults{
|
|
CommitCharacters: &[]string{},
|
|
EditRange: Ignored,
|
|
},
|
|
Items: &fourslash.CompletionsExpectedItems{
|
|
Exact: []fourslash.CompletionsExpectedItem{
|
|
"e1.ts",
|
|
"f1.ts",
|
|
"f2.tsx",
|
|
"folder",
|
|
"tests",
|
|
},
|
|
},
|
|
})
|
|
}
|