make it verbose. debug prints nothing new

This commit is contained in:
Hubert Plociniczak 2024-10-22 13:00:23 +02:00
parent d4c66692b6
commit 6b6cbf811c
2 changed files with 2 additions and 2 deletions

View File

@ -441,7 +441,7 @@ jobs:
- run: corepack pnpm -r --filter enso exec playwright test - run: corepack pnpm -r --filter enso exec playwright test
env: env:
DEBUG: "pw:browser log:" DEBUG: "pw:browser log:"
ENSO_TEST_APP_ARGS: -debug ENSO_TEST_APP_ARGS: -debug.verbose
ENSO_TEST_USER: ${{ secrets.ENSO_CLOUD_TEST_ACCOUNT_USERNAME }} ENSO_TEST_USER: ${{ secrets.ENSO_CLOUD_TEST_ACCOUNT_USERNAME }}
ENSO_TEST_USER_PASSWORD: ${{ secrets.ENSO_CLOUD_TEST_ACCOUNT_PASSWORD }} ENSO_TEST_USER_PASSWORD: ${{ secrets.ENSO_CLOUD_TEST_ACCOUNT_PASSWORD }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

View File

@ -536,7 +536,7 @@ impl JobArchetype for PackageIde {
// See https://askubuntu.com/questions/1512287/obsidian-appimage-the-suid-sandbox-helper-binary-was-found-but-is-not-configu // See https://askubuntu.com/questions/1512287/obsidian-appimage-the-suid-sandbox-helper-binary-was-found-but-is-not-configu
.with_env("ENSO_TEST_APP_ARGS", "--no-sandbox") .with_env("ENSO_TEST_APP_ARGS", "--no-sandbox")
} else if target.0 == OS::MacOS { } else if target.0 == OS::MacOS {
shell(TEST_COMMAND).with_env("ENSO_TEST_APP_ARGS", "-debug") shell(TEST_COMMAND).with_env("ENSO_TEST_APP_ARGS", "-debug.verbose")
} else { } else {
shell(TEST_COMMAND) shell(TEST_COMMAND)
}; };