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

apowers313 / aiforge / 21570337701

01 Feb 2026 09:11PM UTC coverage: 81.026% (-2.9%) from 83.954%
21570337701

push

github

apowers313
test: increase coverage to 80%+

2049 of 2382 branches covered (86.02%)

Branch coverage included in aggregate %.

1849 of 2529 new or added lines in 25 files covered. (73.11%)

681 existing lines in 21 files now uncovered.

9861 of 12317 relevant lines covered (80.06%)

26.33 hits per line

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

83.33
/src/client/components/context-sidebar/ShellContext.tsx
1
/**
2
 * ShellContext - Wrapper for shell context sidebar content
3
 * Note: TODOs and Notes are now associated with projects, not shells.
4
 * This component shows a message directing users to use the project context.
5
 */
6
import { Text, Stack } from '@mantine/core';
1✔
7
import { useUIStore } from '@client/stores/uiStore';
1✔
8

9
export function ShellContext(): React.ReactElement {
1✔
10
  const selectedContextId = useUIStore((state) => state.selectedContextId);
6✔
11

12
  if (!selectedContextId) {
6!
UNCOV
13
    return <Text c="dimmed">No shell selected</Text>;
×
UNCOV
14
  }
×
15

16
  return (
6✔
17
    <Stack align="center" justify="center" p="lg">
6✔
18
      <Text c="dimmed" ta="center">
6✔
19
        TODOs and Notes are now managed at the project level.
20
      </Text>
6✔
21
      <Text c="dimmed" ta="center" size="sm">
6✔
22
        Click on a project name to access TODOs and Notes.
23
      </Text>
6✔
24
    </Stack>
6✔
25
  );
26
}
6✔
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