-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
(3.0.0-beta.2) behavior change on snapshots with ansi control chars #2367
Comments
The "TTY"-nesh of a worker process no longer mimicks the environment you start AVA in. This proved too difficult to maintain. #2343 discusses publishing our fake implementation as its own package, which you could then load. Alternatively you can configure a Chalk instance to force colors to be available. I'd just like to say, thank you for putting the v3 beta through its paces! (I'm closing this issue for housekeeping purposes, but let's keep the conversation going.) |
Could you explain how to do this? I'm looking for the quickest win in the moment. |
Assuming latest const { Instance } = require('chalk')
const chalk = new Instance({level: 3}) |
No the |
ah! This seems to be a side-effect of upgrading chalk! Not sure I understand why the default level of chalk is getting set to zero - but that's a discussion for another day on another repo. I'd also like you thank you for a wonderful test runner and all the work you do to move it forward. |
No I think it's due to our changes in AVA 3. Before, we kinda made it look like the worker process supported colors. We no longer do. Therefore, your Chalk thinks it doesn't. And thanks 😄 |
This is now: import { Chalk } from "chalk"
const chalk = new Chalk({ level: 3 }); Edit: This workaround doesn't work for me somehow. |
Description
The behavior of how chalk'd output is handled has changed w.r.t. snapshots.
Took me a while to pin this on 3.0.0.
Use case:
I snapshot the CLI output as an easy way to track changes over time. This includes
all Ansi-control chars. v3 snapshots seem to strip all ansi-control characters from snapshots.
I did not see an obvious cause in the code, but please do not remove this ability, it will cause me a lot of grief.
Test Source
Test case
Results in a snapshot mismatch.
Snapshot.md - version 2
Snapshot.md - version 3
The text was updated successfully, but these errors were encountered: