Skip to content
This repository was archived by the owner on Mar 5, 2025. It is now read-only.

Commit 22d7d52

Browse files
committed
void test
1 parent 0e59f28 commit 22d7d52

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,8 @@
6161
"test:coverage:unit": "lerna run test:coverage:unit --stream --parallel",
6262
"test:coverage:integration": "lerna run test:coverage:integration --stream --parallel",
6363
"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",
6566
"test:benchmark": "lerna run test:benchmark",
6667
"test:integration:stress": "lerna run test:integration:stress --stream",
6768
"test:e2e:geth:http": "./scripts/test-runner.sh geth http",
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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+
});

0 commit comments

Comments
 (0)