We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8e06bf9 + a51d520 commit d71abdeCopy full SHA for d71abde
1 file changed
tests/playwright/start-nextcloud-server.js
@@ -51,6 +51,9 @@ async function start() {
51
process.stdout.write('\nApply custom configuration for Playwright tests\n')
52
await runOcc(['config:system:set', 'appstoreenabled', '--value', 'false', '--type', 'boolean'])
53
process.stdout.write('├─ Disabled app store\n')
54
+ // createRandomUser() generates short passwords that the policy would reject
55
+ await runOcc(['app:disable', 'password_policy'])
56
+ process.stdout.write('├─ Disabled password policy for random test users\n')
57
await runExec(['php', '-r', '$db = new SQLite3("data/owncloud.db");$db->busyTimeout(5000);$db->exec("PRAGMA journal_mode = wal;");'])
58
process.stdout.write('├─ Enabled SQLite WAL mode for better performance\n')
59
process.stdout.write('├─ Initialize cron job...\n')
0 commit comments