Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .cursor/rules/development-workflow.mdc
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ alwaysApply: true
When you're asked to make changes, follow these rules:

- Say consistent with the rest of our codebase. Read other files to understand what our patterns are.
- Don't run tests using `npm test`, those are extremely slow. Just use `npm run lint` instead.
- Run `npm run lint` after making changes.
- Once linting is successful, you can try running tests if there are ones that cover the area you changed.
- Use `npx run ember test --module '<module-name>'` to run tests.
- If you know the test file, the module name is at the top (`module('...', function (hooks) { ... })`)
- If you're unsure about the test file, ask me.
- Don't run `npm run test`, that's super slow.
- Don't run commands like `npm run build` / `npm run start`.