Skip to content

Commit 961cf52

Browse files
committed
fix src
1 parent b7c20cb commit 961cf52

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

test/e2e/tests/fixes/143.mjs

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@ const testSteps = [
1212
type: 'dimension',
1313
values: ['a', 'a', 'a', 'b', 'b', 'b', 'c', 'c', 'c']
1414
},
15+
{
16+
name: 'Letters2',
17+
type: 'dimension',
18+
values: ['a', 'a', 'a', 'a', 'a', 'b', 'b', 'b', 'b']
19+
},
1520
{
1621
name: 'Val',
1722
type: 'measure',
@@ -38,11 +43,9 @@ const testSteps = [
3843
{ regroupStrategy: 'drilldown' }
3944
),
4045
(chart) =>
41-
chart.animate(
42-
{
43-
y: ['Colors', 'Val']
44-
}
45-
)
46+
chart.animate({
47+
y: ['Colors', 'Letters2', 'Val']
48+
})
4649
]
4750

4851
export default testSteps

0 commit comments

Comments
 (0)