You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: AGENTS.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
-
- I’m using bun to manage packages.
1
+
- I’m using Aube to manage packages and Node to run scripts.
2
2
- Don’t create a summary document.
3
-
- Running all the tests with `bun run test` is cheap, so do it all the time. Don’t do too much before running tests. You can also run browser tests with `bun run test:browser`.
4
-
- Try to maintain 100% test coverage. Use `bun run test --coverage`.
3
+
- Running all the tests with `aube run test` is cheap, so do it all the time. Don’t do too much before running tests. You can also run browser tests with `aube run test:browser`.
4
+
- Try to maintain 100% test coverage. Use `aube run test --coverage`.
5
5
- Make sure you leave things in a good state. No warnings. No type errors.
6
6
- We use tabs for indentation and sometimes additional spaces for alignment
7
7
- When writing new tests, put them under `test/new` and use `test` instead of `it`. Try to keep all the setup in the test itself. If you need to share setup between multiple steps, make a function that each test calls.
0 commit comments