From 741ff90a1eaca84e383337bfcd609f1eddea78b9 Mon Sep 17 00:00:00 2001 From: ConnorSkees <39542938+ConnorSkees@users.noreply.github.com> Date: Wed, 1 Apr 2020 15:26:38 -0400 Subject: [PATCH] explain commented test --- tests/variables.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tests/variables.rs b/tests/variables.rs index 0317efd..279b687 100644 --- a/tests/variables.rs +++ b/tests/variables.rs @@ -98,8 +98,12 @@ test!( "a {\n $a: red\n}\n\nb {\n color: blue;\n}\n", "b {\n color: blue;\n}\n" ); +// TODO: blocked on properly emitting @charset +// right now, we emit @charset if a utf-8 character +// is found *anywhere*, but ideally we would only emit +// it if a utf-8 character is actually in the output // test!( -// properly_escapes_backslash, +// unicode_in_variables, // "$vär: foo;\na {\n color: $vär;\n}\n", // "a {\n color: foo;\n}\n" // );