Skip to content

Commit e96748c

Browse files
authored
Merge pull request #5657 from Tyriar/inst2
Correct test copilot instructions
2 parents 334c817 + 7cba3c9 commit e96748c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/copilot-instructions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ npm run build && npm run esbuild # Build all TypeScript and bundle
2222
**Testing**:
2323
- Unit tests: `npm run test-unit` (Mocha)
2424
- Unit tests filtering to file: `npm run test-unit -- **/fileName.ts
25-
- Per-addon unit tests: `npm run test-unit addons/addon-image/out-esbuild/*.test.js`
25+
- Per-addon unit tests: `npm run test-unit -- addons/addon-image/out-esbuild/*.test.js`
2626
- Integration tests: `npm run test-integration` (Playwright across Chrome/Firefox/WebKit)
2727
- Integration tests by file: `npm run test-integration -- test/playwright/InputHandler.test.ts`. Never use grep to filter tests, it doesn't work
28-
- Integration tests by addon: `npm run test-integration --suite=addon-search`. Suites always follow the format `addon-<something>`
28+
- Integration tests by addon: `npm run test-integration -- --suite=addon-search`. Suites always follow the format `addon-<something>`
2929
- Lint changes: `npm run lint-changes` to lint only changed files, `npm run lint-changes-fix` to fix them
3030

3131
## Addon Development Pattern

0 commit comments

Comments
 (0)