Skip to content

Commit

Permalink
Update the tests
Browse files Browse the repository at this point in the history
  • Loading branch information
cedx committed Oct 10, 2023
1 parent 36aa007 commit 0329b81
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/RunTests.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ const {rm, writeFile} = require("node:fs/promises");
const {createServer} = require("node:http");
const {EOL} = require("node:os");
const process = require("node:process");
const {firefox} = require("playwright");
const {chromium} = require("playwright");
const handler = require("serve-handler");

(async function() {
// Start the browser.
const browser = await firefox.launch();
const browser = await chromium.launch();
const coverage = [];
const page = await browser.newPage();
const server = createServer((req, res) => handler(req, res, {public: "var"}));
Expand Down

0 comments on commit 0329b81

Please sign in to comment.