add ignored interpolated color test

This commit is contained in:
Connor Skees 2020-08-17 04:20:01 -04:00
parent 4f56096571
commit d2a39e274d

View File

@ -647,3 +647,9 @@ test!(
"a {\n color: rgba(1 2 max(3, 3));\n}\n",
"a {\n color: rgba(1, 2, max(3, 3));\n}\n"
);
test!(
#[ignore = "we do not check if interpolation occurred"]
interpolated_named_color_is_not_color,
"a {\n color: type-of(r#{e}d);\n}\n",
"a {\n color: string;\n}\n"
);