Skip to content

Commit

Permalink
logs as list only
Browse files Browse the repository at this point in the history
  • Loading branch information
silkroadnomad committed Dec 4, 2024
1 parent b25cd84 commit 9236547
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,6 @@ jobs:
run: |
echo "🔍 Checking Docker Containers..."
docker compose -f "docker/doichain/docker-compose-regtest.yml" ps
# - name: Get Regtest Container Logs
# run: |
# echo "📜 Fetching logs for regtest container..."
# docker-compose -f "docker/doichain/docker-compose-regtest.yml" logs regtest
- name: Modify Run Command and Run Playwright tests
run: |
sed -i.bak \
Expand Down
4 changes: 2 additions & 2 deletions playwright.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ import { defineConfig, devices } from '@playwright/test';

export default defineConfig({
testDir: './tests',
fullyParallel: true,
fullyParallel: false,
forbidOnly: !!process.env.CI,
retries: process.env.CI ? 2 : 0,
workers: process.env.CI ? 1 : undefined,
reporter: 'html',
reporter: 'list',
use: {
trace: 'on-first-retry',
baseURL: 'http://localhost:4173',
Expand Down

0 comments on commit 9236547

Please sign in to comment.