Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit e984f4d

Browse files
committedMar 6, 2025
add test for utility_machine
1 parent 0fdf697 commit e984f4d

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed
 

‎crates/oxide/src/extractor/utility_machine.rs

+3
Original file line numberDiff line numberDiff line change
@@ -220,6 +220,9 @@ mod tests {
220220
// With dashes
221221
("items-center", vec!["items-center"]),
222222
("items--center", vec!["items--center"]),
223+
// With number followed by dash or underscore
224+
("text-title1-strong", vec!["text-title1-strong"]),
225+
("text-title1_strong", vec!["text-title1_strong"]),
223226
// Inside a string
224227
("'flex'", vec!["flex"]),
225228
// Multiple utilities

0 commit comments

Comments
 (0)
Please sign in to comment.