We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14012c3 commit a2da582Copy full SHA for a2da582
test/options/commaPosition.ts
@@ -128,8 +128,8 @@ export default function supportsCommaPosition(format: FormatFn) {
128
const result = format(
129
`SELECT alpha, --comment1
130
beta,--comment2
131
- delta, epsilon,--comm
132
- iota --comment3`,
+ delta, epsilon,--comment3
+ iota --comment4`,
133
{ commaPosition: 'tabular' }
134
);
135
expect(result).toBe(
@@ -138,8 +138,8 @@ export default function supportsCommaPosition(format: FormatFn) {
138
alpha , --comment1
139
beta , --comment2
140
delta ,
141
- epsilon, --comm
142
- iota --comment3
+ epsilon, --comment3
+ iota --comment4
143
`
144
145
});
0 commit comments