story-kit: merge 294_story_rename_app_title_from_story_kit_to_storkit
This commit is contained in:
@@ -819,7 +819,7 @@ export function Chat({ projectPath, onCloseProject }: ChatProps) {
|
||||
fontSize: "1.1rem",
|
||||
}}
|
||||
>
|
||||
Welcome to Story Kit
|
||||
Welcome to Storkit
|
||||
</h3>
|
||||
<p
|
||||
style={{
|
||||
|
||||
@@ -136,9 +136,9 @@ describe("ChatHeader", () => {
|
||||
expect(screen.getByText("Built: 2026-01-01 00:00")).toBeInTheDocument();
|
||||
});
|
||||
|
||||
it("displays Story Kit branding in the header", () => {
|
||||
it("displays Storkit branding in the header", () => {
|
||||
render(<ChatHeader {...makeProps()} />);
|
||||
expect(screen.getByText("Story Kit")).toBeInTheDocument();
|
||||
expect(screen.getByText("Storkit")).toBeInTheDocument();
|
||||
});
|
||||
|
||||
it("labels the claude-pty optgroup as 'Claude Code'", () => {
|
||||
|
||||
@@ -82,7 +82,7 @@ export function ChatHeader({
|
||||
letterSpacing: "0.02em",
|
||||
}}
|
||||
>
|
||||
Story Kit
|
||||
Storkit
|
||||
</span>
|
||||
<div
|
||||
title={projectPath}
|
||||
|
||||
@@ -33,7 +33,7 @@ function makeProps(
|
||||
describe("SelectionScreen", () => {
|
||||
it("renders the title and description", () => {
|
||||
render(<SelectionScreen {...makeProps()} />);
|
||||
expect(screen.getByText("Story Kit")).toBeInTheDocument();
|
||||
expect(screen.getByText("Storkit")).toBeInTheDocument();
|
||||
expect(
|
||||
screen.getByText("Paste or complete a project path to start."),
|
||||
).toBeInTheDocument();
|
||||
|
||||
@@ -54,7 +54,7 @@ export function SelectionScreen({
|
||||
className="selection-screen"
|
||||
style={{ padding: "2rem", maxWidth: "800px", margin: "0 auto" }}
|
||||
>
|
||||
<h1>Story Kit</h1>
|
||||
<h1>Storkit</h1>
|
||||
<p>Paste or complete a project path to start.</p>
|
||||
|
||||
{knownProjects.length > 0 && (
|
||||
|
||||
Reference in New Issue
Block a user