Prepparing for gatsby testing

This commit is contained in:
2020-02-06 22:04:20 +11:00
parent fe446cab6c
commit c2d6cb09dc
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,8 @@
"start": "npm run develop",
"serve": "gatsby serve",
"deploy": "serverless client deploy --no-confirm",
"clean": "gatsby clean"
"clean": "gatsby clean",
"test": "echo \"No tests defined\""
},
"repository": {
"type": "git",

View File

@ -1,6 +1,5 @@
export const APIRequest = (url:string, body?:object) => {
return fetch(`https://api.domsplace.com/v1/${url}`, {
//mode: 'no-cors',
method: body ? 'POST' : 'GET',
body: body ? JSON.stringify(body) : null,
headers: {