1
+ /* eslint-disable no-console */
1
2
import { lstatSync , readdirSync } from 'node:fs'
2
3
import { readFile } from 'node:fs/promises'
3
4
import { join , sep } from 'node:path'
@@ -11,6 +12,8 @@ import {
11
12
prettifyBrackets ,
12
13
} from './utils'
13
14
15
+ const SHOULD_LOG = false
16
+
14
17
/**
15
18
* `tests/samples` contains code snippets that annotate expected colors with `@colors` comments.
16
19
* `Y`, `P`, `B` are for the 3 levels of matched brackets (yellow, purple, blue), and `R` is for mismatched brackets (red).
@@ -63,11 +66,11 @@ describe('file-driven tests', async () => {
63
66
} )
64
67
const actualBrackets = parseActualBrackets ( html )
65
68
// Logging the colored brackets is much easier to read
66
- /* eslint-disable no-console */
67
- console . log ( c . bold ( fileName ) )
68
- console . log ( ' Expected:' , prettifyBrackets ( expectedBrackets ) )
69
- console . log ( ' Actual: ' , prettifyBrackets ( actualBrackets ) )
70
- /* eslint-enable no-console */
69
+ if ( SHOULD_LOG ) {
70
+ console . log ( c . bold ( fileName ) )
71
+ console . log ( ' Expected:' , prettifyBrackets ( expectedBrackets ) )
72
+ console . log ( ' Actual: ' , prettifyBrackets ( actualBrackets ) )
73
+ }
71
74
expect ( prettifyBrackets ( actualBrackets , { noAnsi : true } ) ) . toEqual (
72
75
prettifyBrackets ( expectedBrackets , { noAnsi : true } ) ,
73
76
)
0 commit comments