Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
octref committed Jun 18, 2018
1 parent 2e5424b commit 2a87acd
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions src/test/css/languageFacts.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,13 +66,12 @@ suite('CSS - Language Facts', () => {
assert.ok(alignLast !== null);
assert.equal(alignLast.name, 'text-align-last');
let b = alignLast.browsers;
assert.equal(b['FF'], '12');
assert.equal(b['IE'], '5');
assert.equal(b['E'], '');
assert.equal(b['C'], void 0);
assert.equal(b['count'], 3);
assert.equal(b['FF'], '49');
assert.equal(b['E'], '12');
assert.equal(b['C'], '47');
assert.equal(b['count'], 4);

assert.equal(getBrowserLabel(alignLast.browsers), 'Edge, Firefox 12, IE 5');
assert.equal(getBrowserLabel(alignLast.browsers), 'Edge 12, Firefox 49, Chrome 47, Opera');

let r = alignLast.restrictions;

Expand Down

0 comments on commit 2a87acd

Please sign in to comment.