Skip to content

Commit

Permalink
try fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Pessimistress committed Aug 23, 2024
1 parent bd24cb3 commit 54f40a2
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 9 deletions.
4 changes: 2 additions & 2 deletions test/modules/extensions/data-filter.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,8 @@ test('DataFilterExtension#categories', t => {

const attributes = layer.getAttributeManager().getAttributes();
t.deepEqual(
attributes.filterCategoryValues.value,
[0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0],
attributes.filterCategoryValues.value.slice(0, 4),
[0, 0, 1, 1],
'filterCategoryValues attribute is populated'
);
t.notOk(attributes.filterValues, 'filterValues attribute is not populated');
Expand Down
19 changes: 12 additions & 7 deletions test/modules/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,22 @@
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.

import './aggregation-layers';
// Core
import './imports-spec';
import './core';
import './carto';
import './extensions';

// Layers and extensions
import './layers';
import './mesh-layers';
import './geo-layers';
import './aggregation-layers';
import './extensions';

// Integration
import './carto';
import './mapbox';
import './google-maps';
import './imports-spec';
import './json';
import './jupyter-widget';
import './layers';
import './mapbox';
import './mesh-layers';
import './react';
import './main/bundle';

0 comments on commit 54f40a2

Please sign in to comment.