Browse Source

Updating test case to mock response value.

pull/4089/head
mike12345567 5 years ago
parent
commit
9336ae5826
  1. 4
      packages/builder/src/stores/backend/tests/tables.spec.js

4
packages/builder/src/stores/backend/tests/tables.spec.js

@ -42,7 +42,7 @@ describe("Tables Store", () => {
})
it("saving a table also selects it", async () => {
api.post.mockReturnValue({ json: () => SAVE_TABLES_RESPONSE})
api.post.mockReturnValue({ status: 200, json: () => SAVE_TABLES_RESPONSE})
await store.save(A_TABLE)
@ -50,7 +50,7 @@ describe("Tables Store", () => {
})
it("saving the table returns a response", async () => {
api.post.mockReturnValue({ json: () => SAVE_TABLES_RESPONSE})
api.post.mockReturnValue({ status: 200, json: () => SAVE_TABLES_RESPONSE})
const response = await store.save(A_TABLE)

Loading…
Cancel
Save