Skip to content

Commit 41cdf3b

Browse files
committed
Refine SDK fallback tests command to streamline exclusions
- Updated the command for running SDK fallback tests in the GitHub Actions workflow to consolidate exclusion patterns for test files. - This change enhances the clarity and efficiency of the test execution process, ensuring that only relevant tests are run. These modifications contribute to a more focused and reliable testing environment for SDK fallback scenarios.
1 parent a5788ff commit 41cdf3b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/e2e-fallback-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ jobs:
157157
# Backend API tests use direct HTTP calls that don't go through fallback.
158158
# Exclude cross-domain-auth which hardcodes the primary URL.
159159
- name: Run SDK fallback tests
160-
run: pnpm -w run pre && cd apps/e2e && npx vitest run tests/js/ --exclude '**/cross-domain-auth*' --exclude '**/oauth.test*' --exclude '**/email-template-existing-project*'
160+
run: pnpm -w run pre && cd apps/e2e && npx vitest run tests/js/ --exclude '**/{cross-domain-auth,oauth,email-template-existing-project}*'
161161

162162
- name: Print Docker Compose logs
163163
if: always()

0 commit comments

Comments
 (0)