Skip to content

Commit 2708c4b

Browse files
committed
Fix format
1 parent 3db16a1 commit 2708c4b

File tree

1 file changed

+33
-27
lines changed

1 file changed

+33
-27
lines changed

test/e2e/tests/fixes/143.mjs

Lines changed: 33 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -42,36 +42,42 @@ const testSteps = [
4242
},
4343
{ regroupStrategy: 'drilldown' }
4444
),
45+
(chart) =>
46+
chart.animate(
47+
{
48+
y: ['Letters2', 'Colors', 'Val']
49+
},
50+
{ regroupStrategy: 'drilldown' }
51+
),
52+
(chart) =>
53+
chart.animate({
54+
config: {
55+
y: 'Colors',
56+
x: 'Val'
57+
}
58+
}),
59+
(chart) =>
60+
chart.animate({
61+
config: {
62+
y: ['Letters2', 'Val'],
63+
x: 'Letters'
64+
}
65+
}),
66+
(chart) =>
67+
chart.animate({
68+
y: ['Letters2', 'Val']
69+
}),
4570
(chart) =>
4671
chart.animate({
4772
y: ['Letters2', 'Colors', 'Val']
48-
},
49-
{ regroupStrategy: 'drilldown' }
50-
),
51-
(chart) => chart.animate({
52-
config: {
53-
y: 'Colors',
54-
x: 'Val'
55-
}
56-
}),
57-
(chart) => chart.animate({
58-
config: {
59-
y: ['Letters2', 'Val'],
60-
x: 'Letters',
61-
}
62-
}),
63-
(chart) => chart.animate({
64-
y: ['Letters2', 'Val']
65-
}),
66-
(chart) => chart.animate({
67-
y: ['Letters2', 'Colors', 'Val']
68-
}),
69-
(chart) => chart.animate({
70-
config: {
71-
y: ['Letters2', 'Colors'],
72-
x: 'Val'
73-
}
74-
})
73+
}),
74+
(chart) =>
75+
chart.animate({
76+
config: {
77+
y: ['Letters2', 'Colors'],
78+
x: 'Val'
79+
}
80+
})
7581
]
7682

7783
export default testSteps

0 commit comments

Comments
 (0)