We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 341ca6f commit 35431feCopy full SHA for 35431fe
tests/integration/utils/snapshots.js
@@ -1,4 +1,10 @@
1
+// eslint-disable-next-line no-restricted-imports
2
+import ansis from 'ansis'
3
+
4
const baseNormalizers = [
5
+ // Strip ansis color control characters
6
+ // TODO(serhalp) Why not exercise colorization in integration tests? Remove and update snapshots?
7
+ { pattern: /^.+$/g, value: ansis.strip },
8
// Information about the package and the OS
9
{ pattern: /netlify-cli\/.+node-.+/g, value: 'netlify-cli/test-version test-os test-node-version' },
10
{ pattern: /@netlify\/build (\d+\.\d+\.\d+)/g, value: '@netlify/build 0.0.0' },
0 commit comments