Skip to content

Commit c384fe9

Browse files
committed
Remove logging
1 parent 49b2bb4 commit c384fe9

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/services/checkpoints/__tests__/ShadowCheckpointService.test.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -60,19 +60,14 @@ describe("ShadowCheckpointService", () => {
6060

6161
const shadowDir = path.join(tmpDir, `shadow-${Date.now()}`)
6262
const workspaceDir = path.join(tmpDir, `workspace-${Date.now()}`)
63-
64-
let t0 = Date.now()
6563
const repo = await initRepo({ workspaceDir })
66-
console.log(`initRepo took ${Date.now() - t0}ms (${workspaceDir})`)
6764

6865
testFile = repo.testFile
6966

70-
t0 = Date.now()
7167
service = await CheckpointServiceFactory.create({
7268
strategy: "shadow",
7369
options: { taskId, shadowDir, workspaceDir, log: () => {} },
7470
})
75-
console.log(`CheckpointServiceFactory.create took ${Date.now() - t0}ms (${workspaceDir})`)
7671

7772
workspaceGit = repo.git
7873
})

0 commit comments

Comments
 (0)