Skip to content

Commit d0bbbbc

Browse files
committed
Failing test
1 parent 75c2374 commit d0bbbbc

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

test/integration.test.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,12 @@ test('integration', (t) => {
2626

2727
root = parse('1 / -1');
2828
t.is(root.nodes.length, 3);
29+
30+
root = parse('1em/var(--line-height)');
31+
t.is(root.nodes.length, 3);
32+
33+
root = parse('1em / var(--line-height)');
34+
t.is(root.nodes.length, 3);
2935
});
3036

3137
test('manipulation', (t) => {

0 commit comments

Comments
 (0)