CircleCI project setup (#138)

This commit is contained in:
Sebastian Rindom
2020-11-21 15:50:42 +01:00
committed by GitHub
parent f5ec1b1b4c
commit c6996dd530
33 changed files with 3091 additions and 432 deletions
@@ -31,7 +31,7 @@
"prettier": "^2.0.5"
},
"scripts": {
"build": "babel src -d .",
"build": "babel src -d . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
"watch": "babel -w src --out-dir . --ignore **/__tests__",
"test": "jest"
@@ -1,3 +1,5 @@
jest.unmock("axios")
import BrightpearlService from "../brightpearl"
import { mockCreateOrder } from "../../utils/brightpearl"
import MockAdapter from "axios-mock-adapter"