Skip to content

Commit

Permalink
Add test for matching braces in VS (skipped)
Browse files Browse the repository at this point in the history
For now marking the test to be skipped
  • Loading branch information
abonie committed Mar 2, 2023
1 parent e6836ad commit 96be6fc
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,10 @@ type BraceMatchingServiceTests() =
member this.BraceInInterpolatedStringSimple() =
this.VerifyBraceMatch("let x = $\"abc{1}def\"", "{1", "}def")

[<Fact(Skip = "Reason not implemented yet.")>]
member this.BraceInInterpolatedStringWith3Dollars() =
this.VerifyBraceMatch("let x = $$$\"\"\"abc{{{1}}}def\"\"\"", "{{{", "}}}")

[<Fact>]
member this.BraceInInterpolatedStringTwoHoles() =
this.VerifyBraceMatch("let x = $\"abc{1}def{2+3}hij\"", "{2", "}hij")
Expand Down

0 comments on commit 96be6fc

Please sign in to comment.