We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91998da commit 51da8f9Copy full SHA for 51da8f9
genai/test/provisionedthroughput-with-txt.test.js
@@ -21,12 +21,15 @@ const projectId = process.env.CAIP_PROJECT_ID;
21
const sample = require('../provisioned-throughput/provisionedthroughput-with-txt.js');
22
const {delay} = require('./util');
23
24
-describe('provisioned-throughput-with-txt', () => {
25
- it('should return provisioned throughput result', async () => {
+describe('provisioned-throughput-with-txt', function () {
+ it('should return provisioned throughput result', async function () {
26
this.timeout(50000);
27
this.retries(4);
28
+
29
await delay(this.test);
30
31
const output = await sample.generateWithProvisionedThroughput(projectId);
32
33
assert(output.length > 0);
34
});
-});
35
+});
0 commit comments