• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

stacklok / codegate-ui / 13009890552

28 Jan 2025 11:57AM UTC coverage: 68.399% (+0.09%) from 68.305%
13009890552

Pull #213

github

web-flow
Merge cbe89e304 into 8894ed521
Pull Request #213: feat: quick "go to settings" for workspace selector

348 of 609 branches covered (57.14%)

Branch coverage included in aggregate %.

5 of 6 new or added lines in 2 files covered. (83.33%)

4 existing lines in 1 file now uncovered.

771 of 1027 relevant lines covered (75.07%)

66.59 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

50.0
/src/hooks/useCurrentPromptStore.ts
1
import { create } from "zustand";
2

3
type CurrentPromptState = {
4
  currentPromptId: string;
5
  setCurrentPromptId: (id: string) => void;
6
};
7

8
export const useCurrentPromptStore = create<CurrentPromptState>((set) => ({
2✔
9
  currentPromptId: "",
10
  setCurrentPromptId: (id: string) => set({ currentPromptId: id }),
×
11
}));
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc