Skip to content

Commit

Permalink
🚧
Browse files Browse the repository at this point in the history
  • Loading branch information
cruzdanilo committed Mar 21, 2024
1 parent 645c6c7 commit a2ad2a6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/preview.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,15 +60,15 @@ jobs:
- run: bun playwright install chromium --with-deps
- run: bun playwright test --project=chromium --shard ${{ matrix.shard }}
- if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: blob-reports
path: blob-report
retention-days: 1

e2e-report:
needs: [e2e]
if: ${{ !github.event.pull_request.draft }}
if: ${{ always() }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -77,12 +77,12 @@ jobs:
node-version: 20
- uses: oven-sh/setup-bun@v1
- run: bun install
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: blob-reports
path: blob-reports
- run: bun playwright merge-reports --reporter html ./blob-reports
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: html-report
path: playwright-report
Expand All @@ -93,7 +93,7 @@ jobs:
if: ${{ always() && needs.e2e-report.result == 'success' && github.ref == 'refs/heads/main' }}
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: html-report
path: html-report
Expand Down
2 changes: 1 addition & 1 deletion e2e/components/leverage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ export default function (page: Page) {
const waitForTransaction = async () => {
const status = page.getByTestId('transaction-status');

await expect(status).toBeVisible({ timeout: 30_000 });
await expect(status).toBeVisible({ timeout: 66_666 });

await page.waitForFunction(
(message) => {
Expand Down

0 comments on commit a2ad2a6

Please sign in to comment.