From e3f779dbd1e47566eeeb63cf33f28563cd0a434d Mon Sep 17 00:00:00 2001 From: Yury Shkoda Date: Wed, 30 Dec 2020 15:04:59 +0300 Subject: [PATCH] test(coverage): enabled gathering coverage BREAKING CHANGE: SASjs Adapter 2.0 - Electric Boogaloo --- .gitignore | 4 +++- package.json | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 7f8efde..049d264 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,6 @@ node_modules build -.env \ No newline at end of file +.env + +/coverage \ No newline at end of file diff --git a/package.json b/package.json index 77677cc..929e920 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "publish:lib": "npm run build && cd build && npm publish", "lint:fix": "npx prettier --write 'src/**/*.{ts,tsx,js,jsx,html,css,sass,less,json,yml,md,graphql}'", "lint": "npx prettier --check 'src/**/*.{ts,tsx,js,jsx,html,css,sass,less,json,yml,md,graphql}'", - "test": "jest", + "test": "jest --coverage", "prepublishOnly": "cp -r ./build/* . && rm -rf ./build", "postpublish": "git clean -fd", "semantic-release": "semantic-release",