From 50df2b50b97dccb884e26615a2c9adc0297df84a Mon Sep 17 00:00:00 2001 From: Xiaoji Chen Date: Tue, 2 Apr 2024 03:00:29 -0700 Subject: [PATCH] try fix ci --- test/modules/core/lib/pick-layers.spec.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/modules/core/lib/pick-layers.spec.ts b/test/modules/core/lib/pick-layers.spec.ts index 56cf97492b8..a20701e4973 100644 --- a/test/modules/core/lib/pick-layers.spec.ts +++ b/test/modules/core/lib/pick-layers.spec.ts @@ -793,6 +793,7 @@ test(`pickingTest`, async t => { } } } + deck.finalize(); t.end(); }); @@ -807,7 +808,7 @@ test('pickingTest#unproject3D', async t => { radius: 100, extruded: true, getElevation: 1000, - getColor: [255, 0, 0], + getFillColor: [255, 0, 0], pickable: true }) ] @@ -820,6 +821,7 @@ test('pickingTest#unproject3D', async t => { 'unprojects to 3D coordinate' ); + deck.finalize(); t.end(); });