Skip to content

Commit

Permalink
State replication checking test (#4)
Browse files Browse the repository at this point in the history
* 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
lukachi and ihordiachenko authored May 1, 2024
1 parent 725d4f5 commit 7162174
Show file tree
Hide file tree
Showing 21 changed files with 10,764 additions and 1,669 deletions.
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ VITE_RARIMO_CORE_API_URL=

VITE_SEMAPHORE_VERIFIER_CONTRACT_ADDRESS_POLYGON_TESTNET=
VITE_IDENTITY_MANAGER_CONTRACT_ADDRESS_POLYGON_TESTNET=
VITE_DEFAULT_CHAIN=POLYGON_TESTNET
VITE_DEFAULT_CHAIN=
60 changes: 42 additions & 18 deletions .gitignore
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
893 changes: 893 additions & 0 deletions .yarn/releases/yarn-4.0.2.cjs

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions .yarnrc.yml
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ yarn build
yarn lint
```

### Run unit tests
### Run tests
```
yarn test
```
Expand Down
Loading

0 comments on commit 7162174

Please sign in to comment.