Skip to content

Commit

Permalink
chore: debug ci
Browse files Browse the repository at this point in the history
  • Loading branch information
hi-ogawa committed Nov 30, 2023
1 parent 1498964 commit 06f6c65
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/shared-test-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,4 @@ jobs:
run: npx playwright install --with-deps ${{ matrix.browser }}

- name: 👀 Run Integration Tests ${{ matrix.browser }}
run: "yarn test:integration --project=${{ matrix.browser }}"
run: "yarn test:integration --project=${{ matrix.browser }} integration/vite-dev-manifest-invalidation-test.ts"
2 changes: 2 additions & 0 deletions integration/vite-dev-manifest-invalidation-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,9 @@ test.describe(async () => {

// client is not aware of new route addition yet (https://github.com/remix-run/remix/issues/7894)
// however server should be able to handle new route (thought it needs a few retries to process invalidation)
let i = 0;
await expect(async () => {
console.log(":::::::: TRIAL", i++);
await page.goto(`http://localhost:${port}/other`);
await page.getByText("new route").click();
}).toPass();
Expand Down

0 comments on commit 06f6c65

Please sign in to comment.