Skip to content

Commit 84e9149

Browse files
committed
Fix typo in npm script command for e2e testing
1 parent 8343144 commit 84e9149

3 files changed

Lines changed: 1 addition & 295 deletions

File tree

.github/pull_request_template.md

Lines changed: 0 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -19,43 +19,3 @@
1919
## Changes Made
2020

2121
<!-- List the main changes in this PR -->
22-
23-
-
24-
-
25-
-
26-
27-
## Related Issues
28-
29-
<!-- Link to related issues, e.g., Closes #123, Fixes #456 -->
30-
31-
Closes #
32-
33-
## Testing
34-
35-
<!-- Describe the testing you've done -->
36-
37-
- [ ] Unit tests pass locally (`npm run test:unit`)
38-
- [ ] E2E tests pass locally (`npm run test:e2e:ready`)
39-
- [ ] Linting passes (`npm run lint`)
40-
- [ ] Build succeeds (`npm run build`)
41-
- [ ] Manually tested in browser
42-
43-
## Screenshots (if applicable)
44-
45-
<!-- Add screenshots for UI changes -->
46-
47-
## Checklist
48-
49-
- [ ] My branch name follows the conventions (feature/*, bugfix/*, etc.)
50-
- [ ] My code follows the project's coding standards
51-
- [ ] I have performed a self-review of my code
52-
- [ ] I have commented my code, particularly in hard-to-understand areas
53-
- [ ] I have made corresponding changes to the documentation
54-
- [ ] My changes generate no new warnings or errors
55-
- [ ] I have added tests that prove my fix is effective or that my feature works
56-
- [ ] New and existing unit tests pass locally with my changes
57-
- [ ] Any dependent changes have been merged and published
58-
59-
## Additional Notes
60-
61-
<!-- Any additional information that reviewers should know -->

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
"lint:style": "npx stylelint \"src/**/*.{css,astro}\"",
4343
"preview": "npm run build:favicons && npx astro build && astro preview",
4444
"sync": "npx astro sync",
45-
"test": "NODE_ENV=test npm run test:unit && npm run test:e2e:ready",
45+
"test": "NODE_ENV=test npm run test:unit && npm run test:e2e",
4646
"test:coverage": "NODE_ENV=test npx vitest run --coverage",
4747
"test:e2e": "NODE_ENV=test npx playwright test",
4848
"test:unit": "NODE_ENV=test npx vitest run",

test/e2e/README.md

Lines changed: 0 additions & 254 deletions
This file was deleted.

0 commit comments

Comments
 (0)