Skip to content

Commit

Permalink
update introspection test too
Browse files Browse the repository at this point in the history
  • Loading branch information
jessicamcinchak committed Dec 1, 2023
1 parent a7e94d7 commit df177c7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions hasura.planx.uk/tests/payment_status.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ describe("payment_status", () => {
i = await introspectAs("api");
});

test("cannot query payment_status", () => {
expect(i.queries).not.toContain("payment_status");
})
test("can query payment_status", () => {
expect(i.queries).toContain("payment_status");
});

test("can insert payment_status", () => {
expect(i.mutations).toContain("insert_payment_status");
Expand Down

0 comments on commit df177c7

Please sign in to comment.