From 96be6fc17246f02840a25bf37177494162c0be46 Mon Sep 17 00:00:00 2001 From: Adam Boniecki Date: Wed, 1 Mar 2023 19:03:50 +0100 Subject: [PATCH] Add test for matching braces in VS (skipped) For now marking the test to be skipped --- .../tests/FSharp.Editor.Tests/BraceMatchingServiceTests.fs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/vsintegration/tests/FSharp.Editor.Tests/BraceMatchingServiceTests.fs b/vsintegration/tests/FSharp.Editor.Tests/BraceMatchingServiceTests.fs index 9e8bce2aba3b..db57560b886d 100644 --- a/vsintegration/tests/FSharp.Editor.Tests/BraceMatchingServiceTests.fs +++ b/vsintegration/tests/FSharp.Editor.Tests/BraceMatchingServiceTests.fs @@ -92,6 +92,10 @@ type BraceMatchingServiceTests() = member this.BraceInInterpolatedStringSimple() = this.VerifyBraceMatch("let x = $\"abc{1}def\"", "{1", "}def") + [] + member this.BraceInInterpolatedStringWith3Dollars() = + this.VerifyBraceMatch("let x = $$$\"\"\"abc{{{1}}}def\"\"\"", "{{{", "}}}") + [] member this.BraceInInterpolatedStringTwoHoles() = this.VerifyBraceMatch("let x = $\"abc{1}def{2+3}hij\"", "{2", "}hij")