Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Convert scripts/Gulpfile to checked mjs/cjs so they can run without compilation #50988

Merged
merged 13 commits into from
Oct 7, 2022
Prev Previous commit
Next Next commit
Remove bad eslint comment
  • Loading branch information
jakebailey committed Oct 7, 2022
commit 4680b7ba02b6b946e89ad36f828319e782024f29
2 changes: 1 addition & 1 deletion scripts/browserIntegrationTest.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { readFileSync } from "fs";
let playwright;
try {
// @ts-ignore-error
playwright = await import("playwright"); // eslint-line import/no-extraneous-dependencies
playwright = await import("playwright");
}
catch (error) {
throw new Error("Playwright is expected to be installed manually before running this script");
Expand Down