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
Pulldash is the fastest way to review pull requests.
4
+
5
+
## Development
6
+
7
+
Use `bun` for everything - package management, tests.
8
+
9
+
## Principles
10
+
11
+
- Performance is P1. If things feel laggy or are not smooth, it is of the utmost importance to fix. Pulldash exists because GitHub's PR review is slow.
12
+
- Tests should primarily occur at the data-layer, and the frontend should mostly dummily render the data.
13
+
14
+
## Testing
15
+
16
+
Tests should be minimal, not conflict with each other, and not be race-prone.
17
+
18
+
Good:
19
+
20
+
-`import { test } from "bun:test"`
21
+
22
+
Bad:
23
+
24
+
-`import { it } from "bun:test"`
25
+
- Any form of timing-based test (e.g. `setTimeout`, `setImmediate`, etc)
0 commit comments