Skip to content

Commit

Permalink
chore: [#1645] Fixes build (#1646)
Browse files Browse the repository at this point in the history
  • Loading branch information
capricorn86 authored Dec 27, 2024
1 parent ad3872d commit d58fc61
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:

strategy:
matrix:
node-version: [20]
node-version: [22]

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -123,7 +123,7 @@ jobs:

strategy:
matrix:
node-version: [20]
node-version: [22]

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion packages/happy-dom/test/html-parser/HTMLParser.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2081,7 +2081,7 @@ describe('HTMLParser', () => {
);
});

it('Handles document wirhout doctype', () => {
it('Handles document without doctype', () => {
const result = <Document>new HTMLParser(window).parse(
`<html lang="en">
<head>
Expand Down
2 changes: 1 addition & 1 deletion packages/integration-test/test/utilities/TestFunctions.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export function run(description, callback) {
hasError = true;
hasTimedout = true;
resolve();
}, 90000 * 100);
}, 90000);
result
.then(() => {
if (!hasTimedout) {
Expand Down

0 comments on commit d58fc61

Please sign in to comment.