File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -83,9 +83,9 @@ node --env-file=../.env --test "*.test.ts"
8383 "scripts" : {
8484 "test" : " node --env-file=../.env --test \" *.test.ts\" "
8585 },
86- "dependencies " : {
87- "effection" : " ^3"
88- }
86+ "peerDependencies " : {
87+ "effection" : " ^3 || ^4 "
88+ }
8989 }
9090 ```
9191
@@ -106,7 +106,7 @@ node --env-file=../.env --test "*.test.ts"
106106
1071074 . Add your package to ` pnpm-workspace.yaml `
1081085 . Add your package to ` tsconfig.json ` references
109- 6 . Run ` pnpm sync:tsrefs: fix ` to update dependencies
109+ 6 . Run ` pnpm sync:fix ` to update dependencies
1101107 . Add a ` README.md ` (text before ` --- ` will be used as a description)
1111118 . Add your source code and export it from ` mod.ts `
1121129 . Add doc strings to your source code - they will be used for documentation
Original file line number Diff line number Diff line change @@ -225,7 +225,7 @@ describe("@effectionx/converge", () => {
225225 expect ( stats . end ) . toBeGreaterThanOrEqual ( end - 5 ) ;
226226 expect ( stats . end ) . toBeLessThanOrEqual ( end ) ;
227227 expect ( stats . elapsed ) . toBeGreaterThanOrEqual ( 50 ) ;
228- expect ( stats . runs ) . toBeGreaterThanOrEqual ( 4 ) ; // ~50ms / 10ms interval = ~5 runs, allow for timing variance
228+ expect ( stats . runs ) . toBeGreaterThanOrEqual ( 3 ) ; // ~50ms / 10ms interval = ~5 runs, allow for timing variance on slower CI
229229 expect ( stats . timeout ) . toEqual ( 50 ) ;
230230 expect ( stats . interval ) . toEqual ( 10 ) ;
231231 expect ( stats . value ) . toEqual ( 50 ) ;
You can’t perform that action at this time.
0 commit comments