Skip to content

Commit 1782f47

Browse files
committed
Fixed test
1 parent 53f3073 commit 1782f47

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

bookstore

tests/consuming-actions.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ describe("Consuming actions locally", () => {
3636

3737
it("calls unbound actions - positional args variant", async () => {
3838
// Use a managed transaction to create a continuation with an authenticated user
39-
let p = await cats.tx(alice, () => cats.submitOrder(BOOK_ID, QUANTITY))
39+
let p = cats.tx(alice, () => cats.submitOrder(BOOK_ID, QUANTITY))
4040
return expect(p).to.be.fulfilled
4141
});
4242
});

0 commit comments

Comments
 (0)