-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
ANKUR DWIVEDI
authored and
ANKUR DWIVEDI
committed
Dec 5, 2024
1 parent
a82c2ae
commit 30bf20e
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,6 +23,6 @@ jobs: | |
yarn install | ||
yarn test | ||
yarn test-e2e | ||
yarn report-coverage | ||
# yarn report-coverage | ||
env: | ||
CI: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
"compile": "rm -rf dist/ & tsc -p tsconfig.json", | ||
"test": "export NODE_ENV=test; nyc ./node_modules/mocha/bin/mocha --exit -t 40000 tests/*.js;ex=$?;unset NODE_ENV; exit $ex;", | ||
"test-e2e": "sh test-e2e.sh; exit $?;", | ||
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov --disable=gcov", | ||
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov", | ||
"prepack": "npm run compile" | ||
}, | ||
"author": "ImageKit Developer <[email protected]>", | ||
|