Skip to content

Commit dfe819f

Browse files
committed
make trailing comma false
1 parent 9f6b496 commit dfe819f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/mui-codemod/src/deprecations/alert-props/alert-props.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ describe('@mui/codemod', () => {
3131
const actual = transform(
3232
{ source: read('./test-cases/theme.actual.js') },
3333
{ jscodeshift },
34-
{ printOptions: { trailingComma: true } },
34+
{ printOptions: { trailingComma: false } },
3535
);
3636

3737
const expected = read('./test-cases/theme.expected.js');

packages/mui-codemod/src/deprecations/slider-props/slider-props.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ describe('@mui/codemod', () => {
3131
const actual = transform(
3232
{ source: read('./test-cases/theme.actual.js') },
3333
{ jscodeshift },
34-
{ printOptions: { trailingComma: true } },
34+
{ printOptions: { trailingComma: false } },
3535
);
3636

3737
const expected = read('./test-cases/theme.expected.js');

0 commit comments

Comments
 (0)