mirror of
https://github.com/status-im/nimbus-eth2.git
synced 2025-01-09 05:52:45 +00:00
3bc42994e4
The EF test format for the LC sync protocol is modified to verify checks after each step: https://github.com/ethereum/consensus-specs/pull/2938 - The test runner is updated accordingly.
19 lines
723 B
Nim
19 lines
723 B
Nim
# beacon_chain
|
|
# Copyright (c) 2021-2022 Status Research & Development GmbH
|
|
# Licensed and distributed under either of
|
|
# * MIT license (license terms in the root directory or at https://opensource.org/licenses/MIT).
|
|
# * Apache v2 license (license terms in the root directory or at https://www.apache.org/licenses/LICENSE-2.0).
|
|
# at your option. This file may not be copied, modified, or distributed except according to those terms.
|
|
|
|
{.used.}
|
|
|
|
import
|
|
./test_fixture_fork,
|
|
./test_fixture_light_client_sync_protocol,
|
|
./test_fixture_operations,
|
|
./test_fixture_sanity_blocks,
|
|
./test_fixture_sanity_slots,
|
|
./test_fixture_ssz_consensus_objects,
|
|
./test_fixture_state_transition_epoch,
|
|
./test_fixture_transition
|