Skip to content

Commit 8899da2

Browse files
authored
Merge pull request #19 from Unity-Lab-AI/codex/refactor-smoke-tests-for-polliclientweb
Simplify smoke test referrer usage
2 parents 5d7a8d2 + afec547 commit 8899da2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/pollilib-smoke.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ await step('textModels returns JSON', async () => {
5454
});
5555

5656
await step('text(prompt) returns string', async () => {
57-
const out = await textGet('Say ok', { model: 'openai-mini', referrer: REFERRER }, client);
57+
const out = await textGet('Say ok', { model: 'openai-mini' }, client);
5858
if (typeof out !== 'string' || !out.length) throw new Error('empty text output');
5959
return `len=${out.length}`;
6060
});

0 commit comments

Comments
 (0)