9b395f5cc3
E2E Headed Chrome / e2e-headed (macos-15) (push) Has been cancelled
E2E Headed Chrome / e2e-headed (ubuntu-latest) (push) Has been cancelled
E2E Headed Chrome / e2e-headed (windows-latest) (push) Has been cancelled
CI / build (macos-latest) (push) Has been cancelled
CI / build (ubuntu-latest) (push) Has been cancelled
CI / build (windows-latest) (push) Has been cancelled
CI / unit-test (push) Has been cancelled
CI / bun-test (push) Has been cancelled
CI / adapter-test (push) Has been cancelled
CI / smoke-test (macos-latest) (push) Has been cancelled
CI / smoke-test (ubuntu-latest) (push) Has been cancelled
Security Audit / audit (push) Has been cancelled
Build Chrome Extension / build (push) Has been cancelled
Trigger Website Rebuild (Docs Updated) / dispatch (push) Has been cancelled
30 lines
1.3 KiB
JavaScript
30 lines
1.3 KiB
JavaScript
import { describe, expect, it } from 'vitest';
|
|
import { __test__ } from './ask.js';
|
|
|
|
describe('grok ask helpers', () => {
|
|
describe('getBaselineLastAssistantId', () => {
|
|
const fakePage = (bubbles) => ({
|
|
// getMessageBubbles in utils.js drives a page.evaluate; in tests we
|
|
// route directly to the in-memory bubble array.
|
|
evaluate: () => Promise.resolve(bubbles),
|
|
});
|
|
|
|
it('returns the id of the most recent Assistant bubble, ignoring later User turns', async () => {
|
|
const bubbles = [
|
|
{ id: 'a1', role: 'Assistant', text: 'first answer', html: '' },
|
|
{ id: 'u1', role: 'User', text: 'follow-up', html: '' },
|
|
{ id: 'a2', role: 'Assistant', text: 'second answer', html: '' },
|
|
{ id: 'u2', role: 'User', text: 'newest user turn', html: '' },
|
|
];
|
|
expect(await __test__.getBaselineLastAssistantId(fakePage(bubbles))).toBe('a2');
|
|
});
|
|
|
|
it('returns empty string when no Assistant bubble exists yet (fresh chat)', async () => {
|
|
expect(await __test__.getBaselineLastAssistantId(fakePage([]))).toBe('');
|
|
expect(await __test__.getBaselineLastAssistantId(fakePage([
|
|
{ id: 'u1', role: 'User', text: 'hello', html: '' },
|
|
]))).toBe('');
|
|
});
|
|
});
|
|
});
|