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",