Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
marcoscaceres committed Apr 25, 2024
1 parent 9d334e7 commit 22f299b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/spec/w3c/style-spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ describe("W3C - Style", () => {
const url = "https://www.w3.org/StyleSheets/TR/2021/base";
const elem = doc.querySelector(`link[href^='${url}'][rel="stylesheet"]`);
expect(elem).toBeTruthy();
expect(elem?.nextElementSibling).toBe(null);
expect(elem.nextElementSibling).toBe(null);
});

it("respects existing color scheme", async () => {
Expand Down

0 comments on commit 22f299b

Please sign in to comment.