feat: update Makelore modules and conversations
Some checks failed
Electron E2E / Electron E2E (macos-latest) (push) Has been cancelled
Electron E2E / Electron E2E (ubuntu-latest) (push) Has been cancelled
Electron E2E / Electron E2E (windows-latest) (push) Has been cancelled

This commit is contained in:
inman
2026-07-31 10:08:41 +08:00
parent b8ca3f8eea
commit 80e8386fa6
175 changed files with 8036 additions and 10581 deletions

View File

@@ -3,7 +3,7 @@ import { describe, expect, it, vi } from 'vitest';
import { ProjectSessionTree } from '@/components/opencode/ProjectSessionTree';
describe('ProjectSessionTree visual style', () => {
it('uses the NiTu plaza surface treatment for an active project and its sessions', () => {
it('uses the Makelore light surface treatment for an active project and its sessions', () => {
render(
<ProjectSessionTree
projects={[
@@ -36,9 +36,9 @@ describe('ProjectSessionTree visual style', () => {
);
const projectNode = screen.getByTestId('opencode-project-node-project-1');
expect(projectNode).toHaveClass('border-[#26384D]', 'bg-[#DCE6EF]', 'shadow-[4px_4px_0_#26384D]');
expect(projectNode).toHaveClass('border-foreground/15', 'bg-brand-soft', 'shadow-soft');
const sessionNode = within(projectNode).getByTestId('opencode-session-node-session-1');
expect(sessionNode).toHaveClass('border-[#26384D]', 'bg-[#EEF3F7]');
expect(sessionNode).toHaveClass('border-foreground/15', 'bg-surface-subtle');
});
});