Skip to content

Commit

Permalink
Try to add logs
Browse files Browse the repository at this point in the history
  • Loading branch information
Deniallugo committed Feb 18, 2021
1 parent 81da602 commit 22516f6
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,15 +118,39 @@ jobs:
- name: integration-server
run: ci_run zk test i server

- name: Show logs
if: ${{ failure() }}
run: |
cir_run cat server.log
cir_run cat dummy_prover.log
- name: integration-api
run: ci_run zk test i api

- name: Show logs
if: ${{ failure() }}
run: |
cir_run cat server.log
cir_run cat dummy_prover.log
- name: integration-zcli
run: ci_run zk test i zcli

- name: Show logs
if: ${{ failure() }}
run: |
cir_run cat server.log
cir_run cat dummy_prover.log
- name: integration-rust-sdk
run: ci_run zk test i rust-sdk

- name: Show logs
if: ${{ failure() }}
run: |
cir_run cat server.log
cir_run cat dummy_prover.log
testkit:
runs-on: [self-hosted, CI-worker]
Expand Down
1 change: 1 addition & 0 deletions core/tests/ts-tests/tests/transfer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ async function suppress<T>(promise: Promise<T>) {
}

Tester.prototype.testTransfer = async function (sender: Wallet, receiver: Wallet, token: TokenLike, amount: BigNumber) {
expect(false, 'Predicted fail');
const fullFee = await this.syncProvider.getTransactionFee('Transfer', receiver.address(), token);
const fee = fullFee.totalFee;
const senderBefore = await sender.getBalance(token);
Expand Down

0 comments on commit 22516f6

Please sign in to comment.