-
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.
Merge pull request #7 from argentlabs/develop
Release 7.1.0
- Loading branch information
Showing
18 changed files
with
240 additions
and
411 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: Unit tests | ||
on: | ||
push: | ||
branches: | ||
- develop | ||
pull_request: | ||
|
||
jobs: | ||
test-unit: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
persist-credentials: false | ||
|
||
- uses: oven-sh/setup-bun@v1 | ||
|
||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18 | ||
|
||
- run: bun install | ||
- run: bun run build | ||
- run: bun run test | ||
env: | ||
TEST_RPC_PROVIDER: ${{ vars.TEST_RPC_PROVIDER }} |
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 |
---|---|---|
|
@@ -159,6 +159,7 @@ dist | |
# Stores VSCode versions used for testing VSCode extensions | ||
|
||
.vscode-test | ||
.vscode | ||
|
||
# yarn v2 | ||
|
||
|
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
This file was deleted.
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
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,51 @@ | ||
// Bun Snapshot v1, https://goo.gl/fbAQLP | ||
|
||
exports[`ContractBatchProvider one call fails in a batch 1`] = ` | ||
[ | ||
{ | ||
"status": "fulfilled", | ||
"value": [ | ||
"0x0", | ||
"0x0", | ||
], | ||
}, | ||
{ | ||
"status": "fulfilled", | ||
"value": [ | ||
"0x0", | ||
"0x0", | ||
], | ||
}, | ||
{ | ||
"status": "fulfilled", | ||
"value": [ | ||
"0x0", | ||
"0x0", | ||
], | ||
}, | ||
{ | ||
"status": "fulfilled", | ||
"value": [ | ||
"0x0", | ||
"0x0", | ||
], | ||
}, | ||
] | ||
`; | ||
|
||
exports[`ContractBatchProvider two call fails in a batch 1`] = ` | ||
[ | ||
{ | ||
"status": "rejected", | ||
}, | ||
{ | ||
"status": "rejected", | ||
}, | ||
{ | ||
"status": "rejected", | ||
}, | ||
{ | ||
"status": "rejected", | ||
}, | ||
] | ||
`; |
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
Oops, something went wrong.