test(transcript): move the contract e2e timeout to the describe arg (jest lint)

This commit is contained in:
qer 2026-08-21 14:21:34 +08:00
parent 11f9cd04f4
commit 2f795ccac7

View file

@ -230,7 +230,7 @@ async function subscribeTranscript(server: RunningServer, sid: string): Promise<
}
describe('transcript contract e2e', { timeout: 90000 }, () => {
describe('transcript contract e2e', () => {
let home: string | undefined;
let server: RunningServer | undefined;
let llm: MockLlm | undefined;
@ -487,4 +487,4 @@ describe('transcript contract e2e', { timeout: 90000 }, () => {
);
channel.close();
});
});
}, 90000);