Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,12 @@ describe('e2e_epochs/epochs_long_proving_time', () => {
const { aztecSlotDuration } = EpochsTestContext.getSlotDurations({ aztecEpochDuration });
const epochDurationInSeconds = aztecSlotDuration * aztecEpochDuration;
const proverTestDelayMs = (epochDurationInSeconds * 1000 * 3) / 4;
test = await EpochsTestContext.setup({ aztecEpochDuration, aztecProofSubmissionEpochs: 8, proverTestDelayMs });
test = await EpochsTestContext.setup({
aztecEpochDuration,
aztecProofSubmissionEpochs: 1000, // Effectively don't re-org
proverTestDelayMs,
proverNodeMaxPendingJobs: 1, // We test for only a single job at once
});
({ logger, monitor, L1_BLOCK_TIME_IN_S } = test);
logger.warn(`Initialized with prover delay set to ${proverTestDelayMs}ms (epoch is ${epochDurationInSeconds}s)`);
});
Expand All @@ -34,7 +39,7 @@ describe('e2e_epochs/epochs_long_proving_time', () => {
await test.teardown();
});

it.skip('generates proof over multiple epochs', async () => {
it('generates proof over multiple epochs', async () => {
const targetProvenEpochs = process.env.TARGET_PROVEN_EPOCHS ? parseInt(process.env.TARGET_PROVEN_EPOCHS) : 1;
const targetProvenBlockNumber = targetProvenEpochs * test.epochDuration;
logger.info(`Waiting for ${targetProvenEpochs} epochs to be proven at ${targetProvenBlockNumber} L2 blocks`);
Expand Down
Loading