This repository was archived by the owner on Mar 5, 2025. It is now read-only.
File tree 2 files changed +24
-1
lines changed
packages/web3-validator/test/integration
2 files changed +24
-1
lines changed Original file line number Diff line number Diff line change 61
61
"test:coverage:unit" : " lerna run test:coverage:unit --stream --parallel" ,
62
62
"test:coverage:integration" : " lerna run test:coverage:integration --stream --parallel" ,
63
63
"test:unit" : " lerna run test:unit --stream --parallel && jest --config=./scripts/jest.config.js" ,
64
- "test:integration" : " lerna run test:integration --stream" ,
64
+ "test:integration" : " cd packages/web3-validator && yarn test:integration" ,
65
+ "test:integration2" : " lerna run test:integration --stream" ,
65
66
"test:benchmark" : " lerna run test:benchmark" ,
66
67
"test:integration:stress" : " lerna run test:integration:stress --stream" ,
67
68
"test:e2e:geth:http" : " ./scripts/test-runner.sh geth http" ,
Original file line number Diff line number Diff line change
1
+ /*
2
+ This file is part of web3.js.
3
+
4
+ web3.js is free software: you can redistribute it and/or modify
5
+ it under the terms of the GNU Lesser General Public License as published by
6
+ the Free Software Foundation, either version 3 of the License, or
7
+ (at your option) any later version.
8
+
9
+ web3.js is distributed in the hope that it will be useful,
10
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
11
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12
+ GNU Lesser General Public License for more details.
13
+
14
+ You should have received a copy of the GNU Lesser General Public License
15
+ along with web3.js. If not, see <http://www.gnu.org/licenses/>.
16
+ */
17
+
18
+ describe ( 'Web3 validator test' , ( ) => {
19
+ it ( 'void' , ( ) => {
20
+ expect ( 1 ) . toBe ( 1 ) ;
21
+ } ) ;
22
+ } ) ;
You can’t perform that action at this time.
0 commit comments