This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

vit / test / jetstream-help.test.js
571 B 19 lines
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});