mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-10 23:36:14 -05:00
Use headless mode by default for Playwright tests
no issue The setting `headless: false` is superceded by using `PWDEBUG=1` as an environment variable during debug sessions / while working on tests.
This commit is contained in:
parent
1161ab98f9
commit
60b924f173
1 changed files with 1 additions and 2 deletions
|
@ -6,8 +6,7 @@ const config = {
|
|||
use: {
|
||||
// Use a single browser since we can't simultaneously test multiple browsers
|
||||
browserName: 'chromium',
|
||||
baseURL: process.env.TEST_URL ?? 'http://localhost:2368',
|
||||
headless: false
|
||||
baseURL: process.env.TEST_URL ?? 'http://localhost:2368'
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue