Skip to content

Commit

Permalink
increase test coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
romainmenke committed May 11, 2024
1 parent 3ac6363 commit 400562d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/selector-specificity/test/test.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -154,3 +154,7 @@ assert.deepEqual(calculate(':active-view-transition(*, *)'), { a: 0, b: 1, c: 0
assert.deepEqual(calculate(':active-view-transition-type(*)'), { a: 0, b: 1, c: 0 });
assert.deepEqual(calculate(':active-view-transition-type(*, bar)'), { a: 0, b: 1, c: 0 });
assert.deepEqual(calculate(':active-view-transition-type(*, *)'), { a: 0, b: 1, c: 0 });

assert.deepEqual(calculate(':lang(\\*-Latn)'), { a: 0, b: 1, c: 0 });
assert.deepEqual(calculate(':lang("*-Latn")'), { a: 0, b: 1, c: 0 });
assert.deepEqual(calculate(':lang(nl-be, fr-be)'), { a: 0, b: 1, c: 0 });

0 comments on commit 400562d

Please sign in to comment.