Fix docs/tests

This commit is contained in:
Jon Staab
2025-04-14 13:18:49 -07:00
parent e54cb0a62d
commit ded668890f
3 changed files with 19 additions and 41 deletions
+2 -2
View File
@@ -40,7 +40,7 @@ describe("publishOne", () => {
await vi.runAllTimers()
expect(successSpy).toHaveBeenCalledWith("hi", "1")
expect(successSpy).toHaveBeenCalledWith("hi")
expect(failureSpy).not.toHaveBeenCalled()
expect(completeSpy).toHaveBeenCalled()
})
@@ -72,7 +72,7 @@ describe("publishOne", () => {
await vi.runAllTimers()
expect(successSpy).not.toHaveBeenCalled()
expect(failureSpy).toHaveBeenCalledWith("hi", "1")
expect(failureSpy).toHaveBeenCalledWith("hi")
expect(completeSpy).toHaveBeenCalled()
})