Skip to content
This repository was archived by the owner on Jun 30, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion lib/zinnia.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import pRetry from 'p-retry'
import timers from 'node:timers/promises'
import { join } from 'node:path'

const ZINNIA_DIST_TAG = 'v0.20.3'
const ZINNIA_DIST_TAG = 'v0.22.2'
const SUBNETS = [
{
subnet: 'spark',
Expand Down
10 changes: 10 additions & 0 deletions test/checker.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,16 @@ describe('Checker', () => {
assert.strictEqual(ps.exitCode, null)
stopChecker()
})
it('runs Spark Checker', async () => {
const ps = startChecker()
await Promise.race([
once(ps, 'exit'),
streamMatch(ps.stdout, 'SPARK started reporting retrievals'),
])
// Assert that the process did not exit prematurely
assert.strictEqual(ps.exitCode, null)
stopChecker()
})
it('runs experimental subnets', () => {
it('runs Arweave & Walrus', async () => {
const ps = startChecker(['--experimental'])
Expand Down