Skip to content

Commit

Permalink
Update density tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jonmmease committed Sep 20, 2023
1 parent e4871e3 commit e107d12
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/compile/data/density.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ describe('compile/data/fold', () => {
extent: [0, 10],
minsteps: 25,
maxsteps: 200,
resolve: 'shared',
as: ['x', 'y']
});
});
Expand Down Expand Up @@ -57,7 +58,7 @@ describe('compile/data/fold', () => {
});
});

it('should add steps if we group', () => {
it('should add resolve shared if we group', () => {
const transform: Transform = {
density: 'v',
groupby: ['a']
Expand All @@ -67,7 +68,7 @@ describe('compile/data/fold', () => {
type: 'kde',
groupby: ['a'],
field: 'v',
steps: 200,
resolve: 'shared',
as: ['value', 'density']
});
});
Expand Down

0 comments on commit e107d12

Please sign in to comment.