Skip to content
This repository was archived by the owner on Jun 30, 2025. It is now read-only.

Commit 2dac6b0

Browse files
authored
deps: upgrade Zinnia to v0.22.2 (#727)
* deps: upgrade Zinnia to v0.22.1 Release notes: https://github.com/CheckerNetwork/zinnia/releases/tag/v0.22.1 Signed-off-by: Miroslav Bajtoš <[email protected]> * test: check that Spark starts reporting retrievals Signed-off-by: Miroslav Bajtoš <[email protected]> * deps: upgrade Zinnia to v0.22.2 Release notes: https://github.com/CheckerNetwork/zinnia/releases/tag/v0.22.2 Signed-off-by: Miroslav Bajtoš <[email protected]> --------- Signed-off-by: Miroslav Bajtoš <[email protected]>
1 parent 0df74ec commit 2dac6b0

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

lib/zinnia.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import pRetry from 'p-retry'
77
import timers from 'node:timers/promises'
88
import { join } from 'node:path'
99

10-
const ZINNIA_DIST_TAG = 'v0.20.3'
10+
const ZINNIA_DIST_TAG = 'v0.22.2'
1111
const SUBNETS = [
1212
{
1313
subnet: 'spark',

test/checker.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,16 @@ describe('Checker', () => {
2424
assert.strictEqual(ps.exitCode, null)
2525
stopChecker()
2626
})
27+
it('runs Spark Checker', async () => {
28+
const ps = startChecker()
29+
await Promise.race([
30+
once(ps, 'exit'),
31+
streamMatch(ps.stdout, 'SPARK started reporting retrievals'),
32+
])
33+
// Assert that the process did not exit prematurely
34+
assert.strictEqual(ps.exitCode, null)
35+
stopChecker()
36+
})
2737
it('runs experimental subnets', () => {
2838
it('runs Arweave & Walrus', async () => {
2939
const ps = startChecker(['--experimental'])

0 commit comments

Comments
 (0)