File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,11 @@ alwaysApply: true
55When you're asked to make changes, follow these rules:
66
77- Say consistent with the rest of our codebase. Read other files to understand what our patterns are.
8- - Don't run tests using `npm test`, those are extremely slow. Just use `npm run lint` instead.
8+ - Run `npm run lint` after making changes.
9+ - Once linting is successful, you can try running tests if there are ones that cover the area you changed.
10+ - Use `npx run ember test --module '<module-name>'` to run tests.
11+ - If you know the test file, the module name is at the top (`module('...', function (hooks) { ... })`)
12+ - If you're unsure about the test file, ask me.
13+ - Don't run `npm run test`, that's super slow.
914- Don't run commands like `npm run build` / `npm run start`.
1015
You can’t perform that action at this time.
0 commit comments