We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When comparing arrays, \ is double escaped.
\
Example:
expect(['\\u123']).toEqual(['\\123'])
Results in:
Array [ - "\\\\123", + "\\\\u123", ]
Same bug doesn't happen when comparing strings:
expect('\\u123').toEqual('\\123');
- Expected "\\123" + Received "\\u123"
Test this:
StackBlitz demo: https://stackblitz.com/edit/vitest-dev-vitest-mym1aa?file=test/basic.test.ts
System: OS: Linux 5.0 undefined CPU: (8) x64 Intel(R) Core(TM) i9-9880H CPU @ 2.30GHz Memory: 0 Bytes / 0 Bytes Shell: 1.0 - /bin/jsh Binaries: Node: 16.14.2 - /usr/local/bin/node Yarn: 1.22.19 - /usr/local/bin/yarn npm: 7.17.0 - /usr/local/bin/npm npmPackages: vite: latest => 3.2.4 vitest: latest => 0.25.3
npm
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Describe the bug
When comparing arrays,
\
is double escaped.Example:
Results in:
Same bug doesn't happen when comparing strings:
Results in:
Reproduction
Test this:
StackBlitz demo: https://stackblitz.com/edit/vitest-dev-vitest-mym1aa?file=test/basic.test.ts
System Info
Used Package Manager
npm
Validations
The text was updated successfully, but these errors were encountered: