Skip to content

Commit 30f62b9

Browse files
committed
un skip tests for aspect-ratio
1 parent 5277f1d commit 30f62b9

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

test/matchers/aspect-ratio.cjs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ test.beforeEach(() => {
88
cleanupMedia();
99
});
1010

11-
// TODO: Seems to be a bug? To investigate. Maybe because the default aspect ratio is 0/0
12-
test.skip("unset", () => {
11+
test("unset", () => {
1312
assert.equal(matchMedia("(min-aspect-ratio: 9/16)").matches, false);
1413
assert.equal(matchMedia("(aspect-ratio: 9/16)").matches, false);
1514
assert.equal(matchMedia("(max-aspect-ratio: 9/16)").matches, false);

test/matchers/device-aspect-ratio.cjs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ test.beforeEach(() => {
88
cleanupMedia();
99
});
1010

11-
// TODO: Seems to be a bug? To investigate. Maybe because the default aspect ratio is 0/0
12-
test.skip("unset", () => {
11+
test("unset", () => {
1312
assert.equal(matchMedia("(min-device-aspect-ratio: 9/16)").matches, false);
1413
assert.equal(matchMedia("(device-aspect-ratio: 9/16)").matches, false);
1514
assert.equal(matchMedia("(max-device-aspect-ratio: 9/16)").matches, false);

0 commit comments

Comments
 (0)