diff --git a/tests/cases/fourslash/quickInfoInheritedJSDoc.ts b/tests/cases/fourslash/quickInfoInheritedJSDoc.ts deleted file mode 100644 index 7b1f54815b76b..0000000000000 --- a/tests/cases/fourslash/quickInfoInheritedJSDoc.ts +++ /dev/null @@ -1,14 +0,0 @@ -/// -// #32708 - -////interface I { -//// /** only once please */ -//// t: T -////} -////interface C extends I { -//// t: T -////} -////declare var cnsb: C & C & C; -////cnsb.t/**/ - -verify.quickInfoAt("", "(property) C.t: never", "only once please"); diff --git a/tests/cases/fourslash/tsxCompletionUnionElementType.ts b/tests/cases/fourslash/tsxCompletionUnionElementType.ts deleted file mode 100644 index b554d3851798d..0000000000000 --- a/tests/cases/fourslash/tsxCompletionUnionElementType.ts +++ /dev/null @@ -1,22 +0,0 @@ -/// - -//@Filename: file.tsx -// @jsx: preserve -// @skipLibCheck: true - -//// declare module JSX { -//// interface Element { } -//// interface IntrinsicElements { -//// } -//// interface ElementAttributesProperty { props; } -//// } -//// function SFC1(prop: { x: number }) { -//// return
hello
; -//// }; -//// function SFC2(prop: { x: boolean }) { -//// return

World

; -//// } -//// var SFCComp = SFC1 || SFC2; -//// - -verify.completions({ marker: "", exact: ["x"] });