Skip to content

Commit

Permalink
Failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
lauriii committed Oct 7, 2019
1 parent 75c2374 commit d0bbbbc
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions test/integration.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,12 @@ test('integration', (t) => {

root = parse('1 / -1');
t.is(root.nodes.length, 3);

root = parse('1em/var(--line-height)');
t.is(root.nodes.length, 3);

root = parse('1em / var(--line-height)');
t.is(root.nodes.length, 3);
});

test('manipulation', (t) => {
Expand Down

0 comments on commit d0bbbbc

Please sign in to comment.