-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
State replication checking test (#4)
* add state replication checking test * upd sepolia rpc url, mv test body to test file * Update src/__tests__/integration.test.ts Co-authored-by: Ihor Diachenko <[email protected]> * fix creating contract instances with json rpc providers * fix yarn gitignored --------- Co-authored-by: Ihor Diachenko <[email protected]>
- Loading branch information
1 parent
725d4f5
commit 7162174
Showing
21 changed files
with
10,764 additions
and
1,669 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
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 |
---|---|---|
@@ -1,32 +1,56 @@ | ||
.DS_Store | ||
node_modules/ | ||
OLD/ | ||
# dependencies | ||
/node_modules | ||
# https://yarnpkg.com/getting-started/qa#which-files-should-be-gitignored | ||
.pnp.* | ||
.yarn/* | ||
!.yarn/patches | ||
!.yarn/plugins | ||
!.yarn/releases | ||
!.yarn/sdks | ||
!.yarn/versions | ||
package-lock.json | ||
|
||
# build | ||
dist/ | ||
dist-ssr/ | ||
|
||
# tests | ||
test/unit/coverage | ||
|
||
# os | ||
.DS_Store | ||
|
||
# linters | ||
.eslintcache | ||
|
||
# debug | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
test/unit/coverage | ||
selenium-debug.log | ||
.eslintcache | ||
package-lock.json | ||
stats.html | ||
|
||
deprecated | ||
# typescript | ||
*.tsbuildinfo | ||
|
||
# Editor directories and files | ||
# editor directories and files | ||
.vscode/* | ||
!.vscode/settings.json | ||
.idea | ||
.vscode | ||
.fleet | ||
*.suo | ||
*.ntvs* | ||
*.njsproj | ||
*.sln | ||
*.local | ||
stats.html | ||
.yarn | ||
.yarnrc.yml | ||
*.sw? | ||
|
||
.env.production | ||
.env.development | ||
# env files | ||
.env.analyze | ||
tsconfig.tsbuildinfo | ||
.env.development | ||
.env.production | ||
.env.local | ||
|
||
# Sentry Auth Token | ||
.env.sentry-build-plugin | ||
|
||
# IDE files | ||
.idea | ||
.vscode |
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
nodeLinker: node-modules | ||
enableTelemetry: false | ||
|
||
yarnPath: .yarn/releases/yarn-4.0.2.cjs |
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 |
---|---|---|
|
@@ -27,7 +27,7 @@ yarn build | |
yarn lint | ||
``` | ||
|
||
### Run unit tests | ||
### Run tests | ||
``` | ||
yarn test | ||
``` | ||
|
Oops, something went wrong.