cruise 0.1.55

YAML-driven coding agent workflow orchestrator
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { render, screen, cleanup } from "@testing-library/react";
import { afterEach, describe, expect, it } from "vitest";
import { EmptyState } from "./EmptyState";

afterEach(() => cleanup());

describe("EmptyState", () => {
  it("shows 'Select a session from the sidebar' text", () => {
    // Given / When
    render(<EmptyState />);
    // Then
    expect(screen.getByText("Select a session from the sidebar")).toBeInTheDocument();
  });
});