From bb6892c1851961fd2a4414f7ab5160a65918be55 Mon Sep 17 00:00:00 2001 From: zouyaoji <370681295@qq.com> Date: Tue, 12 Oct 2021 17:22:50 +0800 Subject: [PATCH] test: increase the timeout period of DataSource component test --- packages/components/datasources/__tests__/datasources.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/components/datasources/__tests__/datasources.spec.ts b/packages/components/datasources/__tests__/datasources.spec.ts index e13595cf7..b3614e276 100644 --- a/packages/components/datasources/__tests__/datasources.spec.ts +++ b/packages/components/datasources/__tests__/datasources.spec.ts @@ -208,5 +208,5 @@ describe('VcDatasourceKml', () => { await testVm.load?.() datasource = testVm.getCesiumObject?.() as Cesium.KmlDataSource expect(datasource).toBeDefined() - }, 15000) + }, 20000) })