Skip to content

Commit 5c4176e

Browse files
committed
fix test format + lint
1 parent f14be0c commit 5c4176e

File tree

1 file changed

+26
-26
lines changed

1 file changed

+26
-26
lines changed

test/e2e/tests/fixes/480.mjs

+26-26
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,30 @@
11
const testSteps = [
2-
(chart) => {
3-
const data = {
4-
series: [
5-
{ name: 'Foo', values: ['a', 'b', 'c', 'a', 'b', 'c'] },
6-
{ name: 'Foo2', values: ['A', 'A', 'A', 'B', 'B', 'B'] },
7-
{ name: 'Bar', values: [150000000, 32, 12, 3, 2, 10], unit: 'p' }
8-
]
9-
}
10-
return chart.animate({ data })
11-
},
12-
(chart) =>
13-
chart.animate({
14-
config: {
15-
size: 'count()',
16-
label: 'count()',
17-
geometry: 'circle',
18-
title: 'Pre title'
19-
}
20-
}),
21-
(chart) =>
22-
chart.animate({
23-
config: {
24-
legend: 'color',
25-
title: 'Some change'
26-
}
27-
})
2+
(chart) => {
3+
const data = {
4+
series: [
5+
{ name: 'Foo', values: ['a', 'b', 'c', 'a', 'b', 'c'] },
6+
{ name: 'Foo2', values: ['A', 'A', 'A', 'B', 'B', 'B'] },
7+
{ name: 'Bar', values: [150000000, 32, 12, 3, 2, 10], unit: 'p' }
8+
]
9+
}
10+
return chart.animate({ data })
11+
},
12+
(chart) =>
13+
chart.animate({
14+
config: {
15+
size: 'count()',
16+
label: 'count()',
17+
geometry: 'circle',
18+
title: 'Pre title'
19+
}
20+
}),
21+
(chart) =>
22+
chart.animate({
23+
config: {
24+
legend: 'color',
25+
title: 'Some change'
26+
}
27+
})
2828
]
2929

3030
export default testSteps

0 commit comments

Comments
 (0)