Skip to content

Commit 8625720

Browse files
CopilotSIkebe
andcommitted
Run all E2E tests in CI instead of just smoke tests
Co-authored-by: SIkebe <17608272+SIkebe@users.noreply.github.com>
1 parent 5720ecc commit 8625720

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,11 +80,11 @@ jobs:
8080
- name: 🏗️ Build project
8181
run: npm run build
8282

83-
- name: 🧪 Run E2E smoke tests
84-
run: npm run test:e2e:smoke
83+
- name: 🧪 Run all E2E tests
84+
run: npm run test:e2e
8585

8686
- name: 📊 E2E Test Summary
8787
run: |
8888
echo "## 🎭 E2E Test Results" >> $GITHUB_STEP_SUMMARY
8989
echo "✅ Build: Successful" >> $GITHUB_STEP_SUMMARY
90-
echo "✅ E2E Smoke Tests: Passed" >> $GITHUB_STEP_SUMMARY
90+
echo "✅ E2E Tests (All): Passed" >> $GITHUB_STEP_SUMMARY

.github/workflows/copilot-setup-steps.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,5 @@ jobs:
4848
- name: Run unit tests
4949
run: npm run test:unit
5050

51-
- name: Run E2E smoke tests
52-
run: npm run test:e2e:smoke
51+
- name: Run all E2E tests
52+
run: npm run test:e2e

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"test:e2e:ui": "playwright test --ui",
3232
"test:e2e:smoke": "playwright test --project=smoke-tests",
3333
"test:e2e:extension": "playwright test --project=chromium-extension",
34-
"test:all": "npm run test && npm run test:e2e:smoke"
34+
"test:all": "npm run test && npm run test:e2e"
3535
},
3636
"keywords": [
3737
"browser-extension",

playwright-report/index.html

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)