Skip to content

Commit c251601

Browse files
committed
Fixed GEE test, we don't know how fast processing starts...
1 parent ef79662 commit c251601

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/earthengine.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,7 @@ describe('With earth-engine-driver', () => {
465465
// Start job
466466
await expect(job.startJob()).resolves.toBeTruthy();
467467
var jobdetails = await job.describeJob();
468-
expect(jobdetails.status).toBe('queued');
468+
expect(['queued', 'running']).toContain(jobdetails.status);
469469

470470
await waitForExpect(async () => {
471471
var jobdetails = await job.describeJob();

0 commit comments

Comments
 (0)