Files
kjol/tools/tsgo/internal/fourslash/tests/gen/jsxSpreadReference_test.go
2026-07-09 16:50:43 -04:00

38 lines
1018 B
Go

// Code generated by convertFourslash; DO NOT EDIT.
// To modify this test, run "npm run makemanual jsxSpreadReference"
package fourslash_test
import (
"testing"
"github.com/microsoft/typescript-go/internal/fourslash"
"github.com/microsoft/typescript-go/internal/testutil"
)
func TestJsxSpreadReference(t *testing.T) {
fourslash.SkipIfFailing(t)
t.Parallel()
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
const content = `//@Filename: file.tsx
declare namespace JSX {
interface Element { }
interface IntrinsicElements {
}
interface ElementAttributesProperty { props }
}
class MyClass {
props: {
name?: string;
size?: number;
}
}
[|var [|/*dst*/{| "contextRangeIndex": 0 |}nn|]: {name?: string; size?: number};|]
var x = <MyClass {...[|n/*src*/n|]}></MyClass>;`
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
defer done()
f.VerifyBaselineRenameAtRangesWithText(t, nil /*preferences*/, "nn")
f.VerifyBaselineGoToDefinition(t, true, "src")
}