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

jest-diff: Replace diff with diff-sequences package #6961

Merged
merged 6 commits into from Jan 11, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -3,6 +3,7 @@
### Features

- `[jest-runtime]` Add `jest.isolateModules` for scoped module initialization ([#6701](https://github.com/facebook/jest/pull/6701))
- `[jest-diff]` [**BREAKING**] Replace `diff` with `diff-sequences` package ([#6961](https://github.com/facebook/jest/pull/6961))
- `[jest-cli]` [**BREAKING**] Only set error process error codes when they are non-zero ([#7363](https://github.com/facebook/jest/pull/7363))
- `[jest-config]` [**BREAKING**] Deprecate `setupTestFrameworkScriptFile` in favor of new `setupFilesAfterEnv` ([#7119](https://github.com/facebook/jest/pull/7119))
- `[jest-worker]` [**BREAKING**] Add functionality to call a `setup` method in the worker before the first call and a `teardown` method when ending the farm ([#7014](https://github.com/facebook/jest/pull/7014))
Expand Down
24 changes: 12 additions & 12 deletions packages/expect/src/__tests__/__snapshots__/matchers.test.js.snap
Expand Up @@ -1794,9 +1794,9 @@ Difference:
<red>+ Received</>

<dim> Array [</>
<red>+ 1,</>
<dim> 2,</>
<green>- 1,</>
<green>- 2,</>
<dim> 1,</>
<red>+ 2,</>
<dim> ]</>"
`;

Expand Down Expand Up @@ -1963,9 +1963,9 @@ Difference:
<red>+ Received</>

<dim> Immutable.List [</>
<red>+ 1,</>
<dim> 2,</>
<green>- 1,</>
<green>- 2,</>
<dim> 1,</>
<red>+ 2,</>
<dim> ]</>"
`;

Expand Down Expand Up @@ -2080,9 +2080,9 @@ Difference:
<red>+ Received</>

<dim> Immutable.OrderedMap {</>
<red>+ 1: \\"one\\",</>
<dim> 2: \\"two\\",</>
<green>- 1: \\"one\\",</>
<green>- 2: \\"two\\",</>
<dim> 1: \\"one\\",</>
<red>+ 2: \\"two\\",</>
<dim> }</>"
`;

Expand All @@ -2109,9 +2109,9 @@ Difference:
<red>+ Received</>

<dim> Immutable.OrderedSet [</>
<red>+ 1,</>
<dim> 2,</>
<green>- 1,</>
<green>- 2,</>
<dim> 1,</>
<red>+ 2,</>
<dim> ]</>"
`;

Expand Down
2 changes: 1 addition & 1 deletion packages/jest-diff/package.json
Expand Up @@ -9,7 +9,7 @@
"main": "build/index.js",
"dependencies": {
"chalk": "^2.0.1",
"diff": "^3.2.0",
"diff-sequences": "^23.6.0",
"jest-get-type": "^22.1.0",
"pretty-format": "^23.6.0"
},
Expand Down
38 changes: 19 additions & 19 deletions packages/jest-diff/src/__tests__/__snapshots__/diff.test.js.snap
Expand Up @@ -76,9 +76,9 @@ exports[`collapses big diffs to patch format 1`] = `
<dim> 6,</>
<dim> 7,</>
<dim> 8,</>
<red>+ 10,</>
<dim> 9,</>
<green>- 10,</>
<green>- 9,</>
<dim> 10,</>
<red>+ 9,</>
<dim> ],</>
<dim> }</>"
`;
Expand Down Expand Up @@ -109,9 +109,9 @@ exports[`context number of lines: -1 (5 default) 1`] = `
<dim> 6,</>
<dim> 7,</>
<dim> 8,</>
<red>+ 10,</>
<dim> 9,</>
<green>- 10,</>
<green>- 9,</>
<dim> 10,</>
<red>+ 9,</>
<dim> ],</>
<dim> }</>"
`;
Expand All @@ -120,10 +120,10 @@ exports[`context number of lines: 0 1`] = `
"<green>- Expected</>
<red>+ Received</>

<yellow>@@ -11,0 +11,1 @@</>
<red>+ 10,</>
<yellow>@@ -12,1 +13,0 @@</>
<green>- 10,</>"
<yellow>@@ -11,1 +11,0 @@</>
<green>- 9,</>
<yellow>@@ -13,0 +12,1 @@</>
<red>+ 9,</>"
`;

exports[`context number of lines: 1 1`] = `
Expand All @@ -132,9 +132,9 @@ exports[`context number of lines: 1 1`] = `

<yellow>@@ -10,4 +10,4 @@</>
<dim> 8,</>
<red>+ 10,</>
<dim> 9,</>
<green>- 10,</>
<green>- 9,</>
<dim> 10,</>
<red>+ 9,</>
<dim> ],</>"
`;

Expand All @@ -145,9 +145,9 @@ exports[`context number of lines: 2 1`] = `
<yellow>@@ -9,6 +9,6 @@</>
<dim> 7,</>
<dim> 8,</>
<red>+ 10,</>
<dim> 9,</>
<green>- 10,</>
<green>- 9,</>
<dim> 10,</>
<red>+ 9,</>
<dim> ],</>
<dim> }</>"
`;
Expand All @@ -162,9 +162,9 @@ exports[`context number of lines: null (5 default) 1`] = `
<dim> 6,</>
<dim> 7,</>
<dim> 8,</>
<red>+ 10,</>
<dim> 9,</>
<green>- 10,</>
<green>- 9,</>
<dim> 10,</>
<red>+ 9,</>
<dim> ],</>
<dim> }</>"
`;
Expand Down