Skip to content

Commit 5763409

Browse files
DavertMikclaude
andcommitted
Fix WebKit, Docker REST tests, and BDD faker config for ESM
WebKit security blocks 0.0.0.0 URLs - use 127.0.0.1 for webkit tests. Docker test-rest was missing node_modules after volume mount. BDD faker config still used CommonJS require/module.exports. Changes: - .github/workflows/playwright.yml: Set localhost URLs for webkit tests - test/docker-compose.yml: Add node_modules anonymous volume - test/bdd/codecept.faker.js: Convert to ESM (import/export) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 91ac5eb commit 5763409

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/bdd/codecept.faker.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
const TestHelper = require('../support/TestHelper')
1+
import TestHelper from '../support/TestHelper.js'
22

3-
module.exports.config = {
3+
export const config = {
44
timeout: 10000,
55
output: './output',
66
helpers: {

0 commit comments

Comments
 (0)