open source is social v-it.org
at main 19 lines 571 B view raw
1// SPDX-License-Identifier: MIT 2// Copyright (c) 2026 sol pbc 3 4import { describe, expect, test } from 'bun:test'; 5import { run } from './helpers.js'; 6 7describe('jetstream help', () => { 8 test('firehose help shows --jetstream', () => { 9 const result = run('firehose --help'); 10 expect(result.exitCode).toBe(0); 11 expect(result.stdout).toContain('--jetstream <url>'); 12 }); 13 14 test('scan help shows --jetstream', () => { 15 const result = run('scan --help'); 16 expect(result.exitCode).toBe(0); 17 expect(result.stdout).toContain('--jetstream <url>'); 18 }); 19});