Skip to content
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

Closed
sramam opened this issue Jan 15, 2020 · 8 comments
Closed

(3.0.0-beta.2) behavior change on snapshots with ansi control chars #2367

sramam opened this issue Jan 15, 2020 · 8 comments

Comments

@sramam
Copy link
Contributor

sramam commented Jan 15, 2020

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

const test = require("ava");
const chalk = require("chalk");

test(`color`, (t) => {
    t.snapshot(chalk.dim.red("some colorful text"));
})
  • take a snapshot with v2,
  • upgrade to v3
  • re-run the test case

Results in a snapshot mismatch.

image

Snapshot.md - version 2

# Snapshot report for `test.js`

The actual snapshot is saved in `test.js.snap`.

Generated by [AVA](https://ava.li).

## color

> Snapshot 1

    '�[2m�[31msome colorful text�[39m�[22m'

Snapshot.md - version 3

# Snapshot report for `test.js`

The actual snapshot is saved in `test.js.snap`.

Generated by [AVA](https://ava.li).

## color

> Snapshot 1

    'some colorful text'
@novemberborn
Copy link
Member

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.)

@sramam
Copy link
Contributor Author

sramam commented Jan 15, 2020

Alternatively you can configure a Chalk instance to force colors to be available.

Could you explain how to do this? I'm looking for the quickest win in the moment.

@novemberborn
Copy link
Member

Assuming latest chalk:

const { Instance } = require('chalk')
const chalk = new Instance({level: 3})

@sramam
Copy link
Contributor Author

sramam commented Jan 15, 2020

Oh - I get this - but where - in each test suite?
in lib/concordance-options.js (v3.0), I logged the level

console.log(`chalk: ${Math.max(chalk.level, 1)} forceColor.level: ${forceColor.level}`);

and it is being reported as 3.
image

@novemberborn
Copy link
Member

No the chalk you're using in your test.

@sramam
Copy link
Contributor Author

sramam commented Jan 15, 2020

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.
My value-add to the beta was incidental - I just have a complex application with a lot of tests, so a simple migration kept surfacing issues. Your effort requires dedication to the cause and is deeply appreciated!.

@novemberborn
Copy link
Member

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.

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 😄

@ctjlewis
Copy link

ctjlewis commented Nov 5, 2022

Assuming latest chalk:

const { Instance } = require('chalk')
const chalk = new Instance({level: 3})

Originally posted by @novemberborn in #2367 (comment)

This is now:

import { Chalk } from "chalk"
const chalk = new Chalk({ level: 3 });

Edit: This workaround doesn't work for me somehow.

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants