Skip to content

Commit f6661cd

Browse files
committed
Fix code style
1 parent c0c5040 commit f6661cd

File tree

1 file changed

+3
-18
lines changed

1 file changed

+3
-18
lines changed

tests/plugins.test.ts

Lines changed: 3 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -106,24 +106,9 @@ let tests: PluginTest[] = [
106106
versions: [3],
107107
plugins: ['prettier-plugin-multiline-arrays'],
108108
tests: {
109-
babel: [
110-
[
111-
`const array = [\n'one']`,
112-
`const array = [\n 'one',\n]`,
113-
],
114-
],
115-
typescript: [
116-
[
117-
`const array = [\n'one']`,
118-
`const array = [\n 'one',\n]`,
119-
],
120-
],
121-
'babel-ts': [
122-
[
123-
`const array = [\n'one']`,
124-
`const array = [\n 'one',\n]`,
125-
],
126-
],
109+
babel: [[`const array = [\n'one']`, `const array = [\n 'one',\n]`]],
110+
typescript: [[`const array = [\n'one']`, `const array = [\n 'one',\n]`]],
111+
'babel-ts': [[`const array = [\n'one']`, `const array = [\n 'one',\n]`]],
127112
},
128113
},
129114
{

0 commit comments

Comments
 (0)