Mealplan CRUD Tests (#95)

* dev-bug: fixed vscode freezes

* test: refactor database init to support tests

* mealplan CRUD testing

Co-authored-by: Hayden <hay-kot@pm.me>
This commit is contained in:
Hayden
2021-01-18 19:54:46 -09:00
committed by GitHub
parent bfc28fc506
commit 2ffaecb7b7
11 changed files with 232 additions and 37 deletions

View File

@@ -16,6 +16,7 @@ const mealPlanURLs = {
export default {
async create(postBody) {
let response = await apiReq.post(mealPlanURLs.create, postBody);
console.log(JSON.stringify(postBody));
return response;
},