@@ -43,7 +43,7 @@ test("formats files and outputs to stdout", async () => {
43
43
// can't just do the testOutput function here because
44
44
// the output is in an undeterministic order
45
45
const stdout = await runPrettierESLintCLI (
46
- "cli-test/fixtures/stdout*.js --no-eslint-ignore"
46
+ "cli-test/fixtures/stdout*.js --no-eslint-ignore --no-prettier-ignore "
47
47
) ;
48
48
expect ( stdout ) . toContain (
49
49
stripIndent (
@@ -75,7 +75,7 @@ test("list different files with the --list-different option", async () => {
75
75
// can't just do the testOutput function here because
76
76
// the output is in an undeterministic order
77
77
const stdout = await runPrettierESLintCLI (
78
- "cli-test/fixtures/stdout*.js --list-different --no-eslint-ignore"
78
+ "cli-test/fixtures/stdout*.js --list-different --no-eslint-ignore --no-prettier-ignore "
79
79
) ;
80
80
expect ( stdout ) . toContain ( "cli-test/fixtures/stdout1.js" ) ;
81
81
expect ( stdout ) . toContain ( "cli-test/fixtures/stdout2.js" ) ;
@@ -87,7 +87,8 @@ test("accepts stdin of code", async () => {
87
87
expect ( stdout ) . toEqual ( "console.log(window.baz, typeof []);\n" ) ;
88
88
} ) ;
89
89
90
- const writeCommand = "cli-test/fixtures/example*.js --write --no-eslint-ignore" ;
90
+ const writeCommand =
91
+ "cli-test/fixtures/example*.js --write --no-eslint-ignore --no-prettier-ignore" ;
91
92
92
93
test ( `prettier-eslint ${ writeCommand } ` , async ( ) => {
93
94
// because we're using --write,
0 commit comments