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

refactor: migrate to ESM #7331

Merged
merged 19 commits into from
Jan 2, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
fix: export all playwright configs as modules
  • Loading branch information
LeoDog896 committed Dec 30, 2023
commit b0a5c9ae591da79ad7d952e89c5900d0fe0aed5b
2 changes: 1 addition & 1 deletion e2e/playwright-ci.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// @ts-check

// eslint-disable-next-line no-unused-vars
import { devices } from '@playwright/test';

Check notice

Code scanning / CodeQL

Unused variable, import, function or class Note

Unused import devices.
const MAX_FAILURES = 5;
const NUM_WORKERS = 2;

Expand Down Expand Up @@ -81,4 +81,4 @@
]
};

module.exports = config;
export default config;
2 changes: 1 addition & 1 deletion e2e/playwright-local.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -104,4 +104,4 @@ const config = {
]
};

module.exports = config;
export default config;
2 changes: 1 addition & 1 deletion e2e/playwright-performance-dev.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@ const config = {
]
};

module.exports = config;
export default config;
2 changes: 1 addition & 1 deletion e2e/playwright-performance-prod.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,4 @@ const config = {
]
};

module.exports = config;
export default config;
2 changes: 1 addition & 1 deletion e2e/playwright-visual-a11y.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,4 @@ const config = {
]
};

module.exports = config;
export default config;
2 changes: 1 addition & 1 deletion e2e/playwright-watch.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// @ts-check

// eslint-disable-next-line no-unused-vars
import { devices } from '@playwright/test';

Check notice

Code scanning / CodeQL

Unused variable, import, function or class Note

Unused import devices.
const MAX_FAILURES = 5;
const NUM_WORKERS = 2;

Expand Down Expand Up @@ -51,4 +51,4 @@
]
};

module.exports = config;
export default config;
Loading