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

fix: prioritize parser used in the project #13323

Merged
merged 4 commits into from
Sep 28, 2022
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
- `[jest-haste-map]` Remove `__proto__` usage ([#13256](https://github.com/facebook/jest/pull/13256))
- `[jest-mock]` Improve `spyOn` typings to handle optional properties ([#13247](https://github.com/facebook/jest/pull/13247))
- `[jest-snapshot]` Throw useful error when an array is passed as property matchers ([#13263](https://github.com/facebook/jest/pull/13263))
- `[jest-snapshot]` Prioritize parser used in the project ([#13323](https://github.com/facebook/jest/pull/13323))

### Chore & Maintenance

Expand Down
9 changes: 5 additions & 4 deletions packages/jest-snapshot/src/InlineSnapshots.ts
Original file line number Diff line number Diff line change
Expand Up @@ -297,14 +297,15 @@ const runPrettier = (
? prettier.resolveConfig.sync(sourceFilePath, {editorconfig: true})
: null;

// Detect the parser for the test file.
// Prioritize parser found in the project config.
// If not found detect the parser for the test file.
// For older versions of Prettier, fallback to a simple parser detection.
// @ts-expect-error - `inferredParser` is `string`
const inferredParser: PrettierParserName | null | undefined =
prettier.getFileInfo
(config && typeof config.parser === 'string' && config.parser) ||
(prettier.getFileInfo
? prettier.getFileInfo.sync(sourceFilePath).inferredParser
: (config && typeof config.parser === 'string' && config.parser) ||
simpleDetectParser(sourceFilePath);
: simpleDetectParser(sourceFilePath));

if (!inferredParser) {
throw new Error(
Expand Down
40 changes: 40 additions & 0 deletions packages/jest-snapshot/src/__tests__/InlineSnapshots.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -689,3 +689,43 @@ test('saveInlineSnapshots() indents awaited snapshots with spaces', () => {
'});\n',
);
});

test('saveInlineSnapshots() prioritize parser from project/editor configuration', () => {
const filename = path.join(dir, 'my.test.js');
fs.writeFileSync(
filename,
'const foo = {\n' +
' "1": "Some value",\n' +
'};\n' +
'test("something", () => {\n' +
' expect("a").toMatchInlineSnapshot();\n' +
'});\n',
);

jest.mocked(prettier.resolveConfig.sync).mockReturnValue({
parser: 'flow',
});

const prettierSpy = jest.spyOn(prettier.getFileInfo, 'sync');

saveInlineSnapshots(
[
{
frame: {column: 15, file: filename, line: 5} as Frame,
snapshot: 'a',
},
],
dir,
'prettier',
);

expect(prettierSpy).not.toBeCalled();
expect(fs.readFileSync(filename, 'utf-8')).toBe(
'const foo = {\n' +
' "1": "Some value",\n' +
'};\n' +
'test("something", () => {\n' +
' expect("a").toMatchInlineSnapshot(`a`);\n' +
'});\n',
);
});