-
Notifications
You must be signed in to change notification settings - Fork 5.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tests & ESLint Improvements #7012
Changes from 22 commits
53b7f4a
a762daa
b97da21
f16c8ea
8985af6
4f41292
0c7bcda
7d49768
26fc8bb
5a1d548
cd871b3
4038de5
5a7af98
5ad69a0
1d3fe5f
bfb1bee
4b0b038
ad39f6f
8cf8fee
49a2121
16cc233
68ce0df
01cbbf5
a180d46
c6bda35
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,3 +45,5 @@ packages/web3/.in3/ | |
|
||
# benchmark results | ||
benchmark-data.txt | ||
|
||
.eslintcache |
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -30,11 +30,11 @@ | |||||
"build:esm": "tsc --build tsconfig.esm.json && echo '{\"type\": \"module\"}' > ./lib/esm/package.json", | ||||||
"build:types": "tsc --build tsconfig.types.json", | ||||||
"build:check": "node -e \"require('./lib')\"", | ||||||
"lint": "eslint --ext .js,.ts .", | ||||||
"lint": "eslint --cache --cache-strategy content --ext .ts .", | ||||||
"lint:fix": "eslint --fix --ext .js,.ts .", | ||||||
"format": "prettier --write '**/*'", | ||||||
"test": "jest --config=./test/unit/jest.config.js", | ||||||
"test:coverage:unit": "jest --config=./test/unit/jest.config.js --coverage=true --coverage-reporters=text", | ||||||
"test:coverage:unit": "jest --config=./test/unit/jest.config.js --coverage=true --coverage-reporters=text", | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. unneccesary extra space There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. fixed in all packages |
||||||
"test:coverage:integration": "jest --config=./test/integration/jest.config.js --passWithNoTests --coverage=true --coverage-reporters=text", | ||||||
"test:ci": "jest --coverage=true --coverage-reporters=json --verbose", | ||||||
"test:watch": "npm test -- --watch", | ||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should be uncommented?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no. we need to restore everytime when we check. remove comment