Skip to content

Commit d58fc61

Browse files
authored
chore: [#1645] Fixes build (#1646)
1 parent ad3872d commit d58fc61

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555

5656
strategy:
5757
matrix:
58-
node-version: [20]
58+
node-version: [22]
5959

6060
steps:
6161
- uses: actions/checkout@v4
@@ -123,7 +123,7 @@ jobs:
123123

124124
strategy:
125125
matrix:
126-
node-version: [20]
126+
node-version: [22]
127127

128128
steps:
129129
- uses: actions/checkout@v4

packages/happy-dom/test/html-parser/HTMLParser.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2081,7 +2081,7 @@ describe('HTMLParser', () => {
20812081
);
20822082
});
20832083

2084-
it('Handles document wirhout doctype', () => {
2084+
it('Handles document without doctype', () => {
20852085
const result = <Document>new HTMLParser(window).parse(
20862086
`<html lang="en">
20872087
<head>

packages/integration-test/test/utilities/TestFunctions.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export function run(description, callback) {
4343
hasError = true;
4444
hasTimedout = true;
4545
resolve();
46-
}, 90000 * 100);
46+
}, 90000);
4747
result
4848
.then(() => {
4949
if (!hasTimedout) {

0 commit comments

Comments
 (0)