31 lines
997 B
TypeScript
31 lines
997 B
TypeScript
import { beforeEach, describe, expect, test } from 'bun:test';
|
|||
|
|
import type { Session } from '@opencode-ai/sdk/v2';
|
||
|
|
|
||
|
|
import { useGlobalSessionsStore } from './useGlobalSessionsStore';
|
||
|
|
|
||
|
|
const buildSession = (shareUrl: string): Session => ({
|
||
|
|
id: 'ses_1',
|
||
|
|
title: 'Shared session',
|
||
|
|
time: { created: 1, updated: 2 },
|
||
|
|
share: { url: shareUrl },
|
||
|
|
} as Session);
|
||
|
|
|
||
|
|
describe('useGlobalSessionsStore', () => {
|
||
|
|
beforeEach(() => {
|
||
|
|
useGlobalSessionsStore.setState({
|
||
|
|
activeSessions: [],
|
||
|
|
archivedSessions: [],
|
||
|
|
sessionsByDirectory: new Map(),
|
||
|
|
hasLoaded: false,
|
||
|
|
status: 'idle',
|
||
|
|
});
|
||
|
|
});
|
||
|
|
|
||
|
|
test('updates an existing session when the share URL changes', () => {
|
||
|
|
useGlobalSessionsStore.getState().upsertSession(buildSession('https://share.example/a'));
|
||
|
|
useGlobalSessionsStore.getState().upsertSession(buildSession('https://share.example/b'));
|
||
|
|
|
||
|
|
expect(useGlobalSessionsStore.getState().activeSessions[0]?.share?.url).toBe('https://share.example/b');
|
||
|
|
});
|
||
|
|
});
|