Skip to content

Commit

Permalink
Fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
schaumb committed Nov 28, 2024
1 parent 3db16a1 commit 2708c4b
Showing 1 changed file with 33 additions and 27 deletions.
60 changes: 33 additions & 27 deletions test/e2e/tests/fixes/143.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -42,36 +42,42 @@ const testSteps = [
},
{ regroupStrategy: 'drilldown' }
),
(chart) =>
chart.animate(
{
y: ['Letters2', 'Colors', 'Val']
},
{ regroupStrategy: 'drilldown' }
),
(chart) =>
chart.animate({
config: {
y: 'Colors',
x: 'Val'
}
}),
(chart) =>
chart.animate({
config: {
y: ['Letters2', 'Val'],
x: 'Letters'
}
}),
(chart) =>
chart.animate({
y: ['Letters2', 'Val']
}),
(chart) =>
chart.animate({
y: ['Letters2', 'Colors', 'Val']
},
{ regroupStrategy: 'drilldown' }
),
(chart) => chart.animate({
config: {
y: 'Colors',
x: 'Val'
}
}),
(chart) => chart.animate({
config: {
y: ['Letters2', 'Val'],
x: 'Letters',
}
}),
(chart) => chart.animate({
y: ['Letters2', 'Val']
}),
(chart) => chart.animate({
y: ['Letters2', 'Colors', 'Val']
}),
(chart) => chart.animate({
config: {
y: ['Letters2', 'Colors'],
x: 'Val'
}
})
}),
(chart) =>
chart.animate({
config: {
y: ['Letters2', 'Colors'],
x: 'Val'
}
})
]

export default testSteps

0 comments on commit 2708c4b

Please sign in to comment.