1
0
mirror of https://github.com/deuill/fawkss.git synced 2024-09-28 04:02:43 +00:00
fawkss/tests/01-comments.scss

27 lines
556 B
SCSS

//
// Simple comment tests for Fawkss.
//
--- TEST ---
/**
* This will appear in the final source code.
*/
// But this won't.
:root {} // This rule should appear, but the comment shouldn't.
.test::before{content:'// This should appear here.'} // But not this.
.test::after{content:"// Also this.", url: "//trip//me"} // You "get" the point.
--- EXPECTED ---
/**
* This will appear in the final source code.
*/
:root {}
.test::before{content:'// This should appear here.'}
.test::after{content:"// Also this.", url: "//trip//me"}
--- END ---