1
0
mirror of https://github.com/sasjs/server.git synced 2026-01-06 14:10:06 +00:00

test: create tmp folder if it doesn't exist before tests

This commit is contained in:
Yury Shkoda
2021-10-06 09:13:17 +03:00
parent a18502671e
commit 57f3824ba8
2 changed files with 3 additions and 3 deletions

View File

@@ -8,7 +8,7 @@
"build": "rimraf build && tsc",
"semantic-release": "semantic-release -d",
"prepare": "[ -d .git ] && git config core.hooksPath ./.git-hooks || true",
"test": "jest --coverage",
"test": "mkdir -p tmp && jest --coverage",
"lint:fix": "npx prettier --write \"src/**/*.{ts,tsx,js,jsx,html,css,sass,less,yml,md,graphql}\"",
"lint": "npx prettier --check \"src/**/*.{ts,tsx,js,jsx,html,css,sass,less,yml,md,graphql}\"",
"package:lib": "npm run build && cp ./package.json build && cp README.md build && cd build && npm version \"5.0.0\" && npm pack"