Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/jquery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@ jobs:
working-directory: test/jquery
run: npm install -D ../../

- name: Run jQuery tests in JSDOM
working-directory: test/jquery
run: npm run test:jsdom -- -v

- name: Run jQuery tests
working-directory: test/jquery
run: npm run test:browser -- -v
Expand Down
2 changes: 1 addition & 1 deletion jsdom/createWindow.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const { JSDOM } = jsdom;

export default async function createWindow( { reportId, url, verbose } ) {
const virtualConsole = new jsdom.VirtualConsole();
virtualConsole.sendTo( console );
virtualConsole.forwardTo( console );
virtualConsole.removeAllListeners( "clear" );

const { window } = await JSDOM.fromURL( url, {
Expand Down