saleor-dashboard/cypress/apiRequests/Page.js
Karolina Rakoczy f1b313ea69
Saleor 3873 tests for navigation (#1234)
* add test for creating menu

* tests for navigation

* fix imports
2021-07-15 15:31:05 +03:00

18 lines
350 B
JavaScript

export function createPage({ title, pageTypeId }) {
const mutation = `mutation{
pageCreate(input:{
title:"${title}"
pageType:"${pageTypeId}"
}){
errors{
field
message
}
page{
title
id
}
}
}`;
return cy.sendRequestWithQuery(mutation).its("body.data.pageCreate");
}