Skip to content

Commit f189f5b

Browse files
committed
test
1 parent 406998b commit f189f5b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

internal/fourslash/tests/foldingRangeJSXPropertyAccess_test.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ func TestFoldingRangeJSXPropertyAccess(t *testing.T) {
1313
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
1414
const content = `// @jsx: preserve
1515
// @Filename: /a.tsx
16-
const Components = {
16+
const Components =[| {
1717
Nested: () => null
18-
};
18+
}|];
1919
20-
export const Test = () => {
21-
return <Components.Nested></Components.Nested>;
22-
};`
20+
export const Test = () =>[| {
21+
return [|<Components.Nested></Components.Nested>|];
22+
}|];`
2323
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
2424
defer done()
2525
f.VerifyOutliningSpans(t)

0 commit comments

Comments
 (0)