Skip to content

Commit

Permalink
fix mising version pnpm install issue
Browse files Browse the repository at this point in the history
  • Loading branch information
thetarnav committed Sep 23, 2022
1 parent 6a575b3 commit 58e8914
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions packages/idle/test/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ describe("createIdleTimer", () => {
const div = document.createElement("div");

const { start, stop } = createIdleTimer({
promptTimeout: 15,
idleTimeout: 15,
promptTimeout: 30,
idleTimeout: 30,
startManually: true,
onActive: () => (currStatus = "active"),
onIdle: () => (currStatus = "idle"),
Expand All @@ -106,7 +106,7 @@ describe("createIdleTimer", () => {
currStatus,
"timers have started, user should be in the prompt phase, onPrompt should have been called by now"
).toBe("prompted");
await sleep(50);
await sleep(60);
expect(currStatus, "prompt timer has expired, onIdle should have been called by now").toBe(
"idle"
);
Expand Down
6 changes: 3 additions & 3 deletions packages/memo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,11 @@
"memo"
],
"dependencies": {
"@solid-primitives/scheduled": "workspace:1.0.1",
"@solid-primitives/utils": "workspace:^3.0.2"
"@solid-primitives/scheduled": "^1.0.2",
"@solid-primitives/utils": "^3.0.2"
},
"devDependencies": {
"@solid-primitives/mouse": "workspace:^2.0.2",
"@solid-primitives/mouse": "^2.0.2",
"jsdom": "^20.0.0",
"prettier": "^2.7.1",
"solid-app-router": "^0.3.3",
Expand Down

0 comments on commit 58e8914

Please sign in to comment.