-
-
Notifications
You must be signed in to change notification settings - Fork 6.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix test retries that contain snapshots (#8629)
* Fix bug with snapshots and retries * Update CHANGELOG.md * Address e2e tests PR comments * Use correct type for snapshotState * Simplify implementation and decouple it from expect
- Loading branch information
Showing
7 changed files
with
298 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,141 @@ | ||
/** | ||
* Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
*/ | ||
|
||
import path from 'path'; | ||
import {cleanup, makeTemplate, writeFiles} from '../Utils'; | ||
import runJest from '../runJest'; | ||
|
||
const DIR = path.resolve(__dirname, '../to-match-inline-snapshot-with-retries'); | ||
const TESTS_DIR = path.resolve(DIR, '__tests__'); | ||
|
||
beforeEach(() => cleanup(TESTS_DIR)); | ||
afterAll(() => cleanup(TESTS_DIR)); | ||
|
||
test('works with a single snapshot', () => { | ||
const filename = 'basic-support.test.js'; | ||
const template = makeTemplate(` | ||
let index = 0; | ||
afterEach(() => { | ||
index += 1; | ||
}); | ||
jest.retryTimes($2); | ||
test('snapshots', () => expect($1).toMatchInlineSnapshot(\`3\`)); | ||
`); | ||
|
||
{ | ||
writeFiles(TESTS_DIR, { | ||
[filename]: template(['3', '1' /* retries */]), | ||
}); | ||
const {stderr, status} = runJest(DIR, ['-w=1', '--ci=false', filename]); | ||
expect(stderr).toMatch('Snapshots: 1 passed, 1 total'); | ||
expect(status).toBe(0); | ||
} | ||
|
||
{ | ||
writeFiles(TESTS_DIR, { | ||
[filename]: template(['index', '2' /* retries */]), | ||
}); | ||
const {stderr, status} = runJest(DIR, [ | ||
'-w=1', | ||
'--ci=false', | ||
'--testRunner=jest-circus/runner', | ||
filename, | ||
]); | ||
expect(stderr).toMatch('Received: 2'); | ||
expect(stderr).toMatch('1 snapshot failed from 1 test suite.'); | ||
expect(status).toBe(1); | ||
} | ||
|
||
{ | ||
writeFiles(TESTS_DIR, { | ||
[filename]: template(['index', '4' /* retries */]), | ||
}); | ||
const {stderr, status} = runJest(DIR, [ | ||
'-w=1', | ||
'--ci=false', | ||
'--testRunner=jest-circus/runner', | ||
filename, | ||
]); | ||
expect(stderr).toMatch('Snapshots: 1 passed, 1 total'); | ||
expect(status).toBe(0); | ||
} | ||
}); | ||
|
||
test('works when a different assertion is failing', () => { | ||
const filename = 'basic-support.test.js'; | ||
const template = makeTemplate(` | ||
jest.retryTimes($1); | ||
test('snapshots', () => { | ||
expect(3).toMatchInlineSnapshot(\`3\`); | ||
expect(false).toBe(true); | ||
}); | ||
`); | ||
|
||
{ | ||
writeFiles(TESTS_DIR, { | ||
[filename]: template(['4']), | ||
}); | ||
const {stderr, status} = runJest(DIR, ['-w=1', '--ci=false', filename]); | ||
expect(stderr).toMatch('Test Suites: 1 failed, 1 total'); | ||
expect(stderr).toMatch('Snapshots: 1 passed, 1 total'); | ||
expect(status).toBe(1); | ||
} | ||
}); | ||
|
||
test('works when multiple tests have snapshots but only one of them failed multiple times', () => { | ||
const filename = 'basic-support.test.js'; | ||
const template = makeTemplate(` | ||
test('passing snapshots', () => expect(1).toMatchInlineSnapshot(\`1\`)); | ||
describe('with retries', () => { | ||
let index = 0; | ||
afterEach(() => { | ||
index += 1; | ||
}); | ||
jest.retryTimes($2); | ||
test('snapshots', () => expect($1).toMatchInlineSnapshot(\`3\`)); | ||
}); | ||
`); | ||
|
||
{ | ||
writeFiles(TESTS_DIR, { | ||
[filename]: template(['3', '2' /* retries */]), | ||
}); | ||
const {stderr, status} = runJest(DIR, ['-w=1', '--ci=false', filename]); | ||
expect(stderr).toMatch('Snapshots: 2 passed, 2 total'); | ||
expect(status).toBe(0); | ||
} | ||
|
||
{ | ||
writeFiles(TESTS_DIR, { | ||
[filename]: template(['index', '2' /* retries */]), | ||
}); | ||
const {stderr, status} = runJest(DIR, [ | ||
'-w=1', | ||
'--ci=false', | ||
'--testRunner=jest-circus/runner', | ||
filename, | ||
]); | ||
expect(stderr).toMatch('Snapshot name: `with retries snapshots 1`'); | ||
expect(stderr).toMatch('Received: 2'); | ||
expect(stderr).toMatch('1 snapshot failed from 1 test suite.'); | ||
expect(status).toBe(1); | ||
} | ||
|
||
{ | ||
writeFiles(TESTS_DIR, { | ||
[filename]: template(['index', '4' /* retries */]), | ||
}); | ||
const {stderr, status} = runJest(DIR, [ | ||
'-w=1', | ||
'--ci=false', | ||
'--testRunner=jest-circus/runner', | ||
filename, | ||
]); | ||
expect(stderr).toMatch('Snapshots: 1 passed, 1 total'); | ||
expect(status).toBe(0); | ||
} | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,119 @@ | ||
/** | ||
* Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
*/ | ||
|
||
import path from 'path'; | ||
import {cleanup, makeTemplate, writeFiles} from '../Utils'; | ||
import runJest from '../runJest'; | ||
|
||
const DIR = path.resolve(__dirname, '../to-match-snapshot-with-retries'); | ||
const TESTS_DIR = path.resolve(DIR, '__tests__'); | ||
|
||
beforeEach(() => cleanup(TESTS_DIR)); | ||
afterAll(() => cleanup(TESTS_DIR)); | ||
|
||
test('works with a single snapshot', () => { | ||
const filename = 'basic-support.test.js'; | ||
const template = makeTemplate(` | ||
let index = 0; | ||
afterEach(() => { | ||
index += 1; | ||
}); | ||
jest.retryTimes($2); | ||
test('snapshots', () => expect($1).toMatchSnapshot()); | ||
`); | ||
|
||
{ | ||
writeFiles(TESTS_DIR, { | ||
[filename]: template(['3', '1' /* retries */]), | ||
}); | ||
const {stderr, status} = runJest(DIR, ['-w=1', '--ci=false', filename]); | ||
expect(stderr).toMatch('1 snapshot written from 1 test suite.'); | ||
expect(status).toBe(0); | ||
} | ||
|
||
{ | ||
writeFiles(TESTS_DIR, { | ||
[filename]: template(['index', '2' /* retries */]), | ||
}); | ||
const {stderr, status} = runJest(DIR, [ | ||
'-w=1', | ||
'--ci=false', | ||
'--testRunner=jest-circus/runner', | ||
filename, | ||
]); | ||
expect(stderr).toMatch('Received: 2'); | ||
expect(stderr).toMatch('1 snapshot failed from 1 test suite.'); | ||
expect(status).toBe(1); | ||
} | ||
|
||
{ | ||
writeFiles(TESTS_DIR, { | ||
[filename]: template(['index', '4' /* retries */]), | ||
}); | ||
const {stderr, status} = runJest(DIR, [ | ||
'-w=1', | ||
'--ci=false', | ||
'--testRunner=jest-circus/runner', | ||
filename, | ||
]); | ||
expect(stderr).toMatch('Snapshots: 1 passed, 1 total'); | ||
expect(status).toBe(0); | ||
} | ||
}); | ||
|
||
test('works when multiple tests have snapshots but only one of them failed multiple times', () => { | ||
const filename = 'basic-support.test.js'; | ||
const template = makeTemplate(` | ||
test('passing snapshots', () => expect('foo').toMatchSnapshot()); | ||
describe('with retries', () => { | ||
let index = 0; | ||
afterEach(() => { | ||
index += 1; | ||
}); | ||
jest.retryTimes($2); | ||
test('snapshots', () => expect($1).toMatchSnapshot()); | ||
}); | ||
`); | ||
|
||
{ | ||
writeFiles(TESTS_DIR, { | ||
[filename]: template(['3', '2' /* retries */]), | ||
}); | ||
const {stderr, status} = runJest(DIR, ['-w=1', '--ci=false', filename]); | ||
expect(stderr).toMatch('2 snapshots written from 1 test suite.'); | ||
expect(status).toBe(0); | ||
} | ||
|
||
{ | ||
writeFiles(TESTS_DIR, { | ||
[filename]: template(['index', '2' /* retries */]), | ||
}); | ||
const {stderr, status} = runJest(DIR, [ | ||
'-w=1', | ||
'--ci=false', | ||
'--testRunner=jest-circus/runner', | ||
filename, | ||
]); | ||
expect(stderr).toMatch('Received: 2'); | ||
expect(stderr).toMatch('1 snapshot failed from 1 test suite.'); | ||
expect(status).toBe(1); | ||
} | ||
|
||
{ | ||
writeFiles(TESTS_DIR, { | ||
[filename]: template(['index', '4' /* retries */]), | ||
}); | ||
const {stderr, status} = runJest(DIR, [ | ||
'-w=1', | ||
'--ci=false', | ||
'--testRunner=jest-circus/runner', | ||
filename, | ||
]); | ||
expect(stderr).toMatch('Snapshots: 1 passed, 1 total'); | ||
expect(status).toBe(0); | ||
} | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"jest": { | ||
"testEnvironment": "node" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"jest": { | ||
"testEnvironment": "node" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters