-
Notifications
You must be signed in to change notification settings - Fork 231
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- uses a separate ava configurations so we can run in parallel in CI
- Loading branch information
1 parent
186baa6
commit a868412
Showing
5 changed files
with
49 additions
and
20 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,11 @@ | ||
export default { | ||
extensions: { | ||
ts: 'module', | ||
}, | ||
require: ['@endo/init/debug.js'], | ||
nodeArguments: ['--import=tsimp/import'], | ||
files: ['test/fast-usdc/**/*.test.ts'], | ||
concurrency: 1, | ||
serial: true, | ||
timeout: '125s', | ||
}; |
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,11 @@ | ||
export default { | ||
extensions: { | ||
ts: 'module', | ||
}, | ||
require: ['@endo/init/debug.js'], | ||
nodeArguments: ['--import=tsimp/import'], | ||
files: ['test/**/*.test.ts', '!test/fast-usdc/**/*.test.ts'], | ||
concurrency: 1, | ||
serial: true, | ||
timeout: '125s', | ||
}; |
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,14 @@ | ||
## Start Chains | ||
|
||
Runs agoric, noble, and osmosis with hermes relayers. | ||
|
||
```sh | ||
# start starship with fusdc configuration | ||
make start FILE=config.fusdc.yaml | ||
``` | ||
|
||
## Run Tests | ||
|
||
```sh | ||
yarn test:fast-usdc | ||
``` |
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