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

24 lines
292 B
Plaintext

//
// 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.
--- EXPECTED ---
/**
* This will appear in the final source code.
*/
:root {}
--- END ---