File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 33## Build/Test Commands
44
55- ** Test** : ` deno task test ` (all tests), ` deno task test:parallel ` (all tests
6- in parallel), ` deno task test:coverage ` (with coverage)
6+ in parallel), ` deno task test:coverage ` (all tests with coverage)
77- ** Single test** : ` deno test -A tests/path/to/specific.test.mjs `
88- ** Lint** : ` deno task lint ` (check), ` deno task lint:fix ` (autofix)
99- ** Format** : ` deno task format ` (autoformat), ` deno task format:check ` (check
2323 assertions (` ! ` )
2424- ** Async** : Prefer async/await, handle rejections with try/catch
2525- ** Error handling** : Typed errors with structured properties
26- - ** Worker patterns** : Broadcast channels for worker communication, store
27- Promise resolvers in Maps
26+ - ** Worker patterns** : MessageChannel/MessagePort for worker communication,
27+ postMessage/onmessage for worker messaging, store Promise resolvers in Maps
2828- ** Testing** : Use ` @std/expect ` and ` @std/testing/bdd ` , ` .mjs ` extension for
2929 test files
3030
You can’t perform that action at this time.
0 commit comments