diff --git a/genai/test/textgen-with-multi-img.test.js b/genai/test/textgen-with-multi-img.test.js index 85ce27650b..cc4c2ca929 100644 --- a/genai/test/textgen-with-multi-img.test.js +++ b/genai/test/textgen-with-multi-img.test.js @@ -25,8 +25,8 @@ describe('textgen-with-multi-img', () => { this.timeout(180000); const output = await sample.generateContent(projectId); console.log('Generated output:', output); - assert.isString(output, 'Output should be a string'); assert.isAbove(output.length, 0, 'Output should not be empty'); + }); });