Skip to content

Commit

Permalink
changelog / lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jeysal committed May 4, 2020
1 parent 1d63a02 commit 2f75fb8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Expand Up @@ -4,6 +4,8 @@

### Fixes

- `[jest-each]` [**BREAKING**] Ignore excess words in headings ([#8766](https://github.com/facebook/jest/pull/8766))

### Chore & Maintenance

### Performance
Expand Down Expand Up @@ -383,7 +385,6 @@

### Fixes

- `[jest-each]` Ignore excess words in headings ([#8766](https://github.com/facebook/jest/pull/8766))
- `[jest-cli]` Detect side-effect only imports when running `--onlyChanged` or `--changedSince` ([#8670](https://github.com/facebook/jest/pull/8670))
- `[jest-cli]` Allow `--maxWorkers` to work with % input again ([#8565](https://github.com/facebook/jest/pull/8565))
- `[babel-plugin-jest-hoist]` Expand list of whitelisted globals in global mocks ([#8429](https://github.com/facebook/jest/pull/8429))
Expand Down
4 changes: 1 addition & 3 deletions packages/jest-each/src/bind.ts
Expand Up @@ -72,9 +72,7 @@ const buildTemplateTests = (
};

const getHeadingKeys = (headings: string): Array<string> =>
extractValidTemplateHeadings(headings)
.replace(/\s/g, '')
.split('|');
extractValidTemplateHeadings(headings).replace(/\s/g, '').split('|');

const applyArguments = (
supportsDone: boolean,
Expand Down

0 comments on commit 2f75fb8

Please sign in to comment.