Skip to content

Commit

Permalink
ci: attemp to start flextesa tests
Browse files Browse the repository at this point in the history
  • Loading branch information
hui-an-yang committed Oct 18, 2023
1 parent dfce26e commit 3eeadd7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ jobs:
-p 20000:20000 \
${{ matrix.flextesa_docker_image }} \
flextesa mini-net \
--root /tmp/mini-box --size 3 \
--root /tmp/mini-box --size 2 \
--set-history-mode N000:archive \
--number-of-b 1 \
--balance-of-bootstrap-accounts tez:100_000_000 \
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/wallet-confirmation-timeout.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ CONFIGS().forEach(({ lib, rpc, setup }) => {

beforeEach(async (done) => {
await setup();
minimal_block_delay = (await Tezos.rpc.getConstants()).minimal_block_delay ?? new BigNumber(15);
minimal_block_delay = (await Tezos.rpc.getConstants()).minimal_block_delay ?? new BigNumber(8);
done();
});

Expand Down
1 change: 1 addition & 0 deletions packages/taquito/test/wallet/operation-factory.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { defer } from 'rxjs';
import { Context } from '../../src/context';
import { createNewPollingBasedHeadObservable } from '../../src/wallet/operation-factory';
import { distinctUntilKeyChanged, switchMap } from 'rxjs/operators';

describe('createNewPollingBasedHeadObservable', () => {
const createFakeBlock = (level: number) => ({ hash: `test_${level}` });

Expand Down

0 comments on commit 3eeadd7

Please sign in to comment.