Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: jest-community/jest-watch-typeahead
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.5.0
Choose a base ref
...
head repository: jest-community/jest-watch-typeahead
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.6.0
Choose a head ref
  • 2 commits
  • 10 files changed
  • 2 contributors

Commits on May 5, 2020

  1. chore(breakng): upgrade Jest to v26 (#35)

    * chore: Update dependencies
    
    BREAKING CHANGE: Requires Jest 26+
    BREAKING CHANGE: Requires Node 10+
    
    * Run Prettier on full codebase
    MichaelDeBoey authored May 5, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    e256697 View commit details
  2. 0.6.0

    SimenB committed May 5, 2020

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    SimenB Simen Bekkhus
    Copy the full SHA
    35f8d38 View commit details
Showing with 967 additions and 722 deletions.
  1. +1 −0 .prettierignore
  2. +4 −3 .travis.yml
  3. +1 −1 README.md
  4. +30 −24 package.json
  5. +1 −1 src/file_name_plugin/plugin.js
  6. +3 −3 src/file_name_plugin/prompt.js
  7. +1 −1 src/test_name_plugin/plugin.js
  8. +2 −2 src/test_name_plugin/prompt.js
  9. +7 −7 src/test_utils/pluginTester.js
  10. +917 −680 yarn.lock
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
build
7 changes: 4 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
language: node_js
node_js:
- "12"
- "10"
- "8"
- 10
- 12
- 14
- node
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -14,7 +14,7 @@

### Install

Install `jest`_(it needs Jest 23+)_ and `jest-watch-typeahead`
Install `jest`_(it needs Jest 26+)_ and `jest-watch-typeahead`

```bash
yarn add --dev jest jest-watch-typeahead
54 changes: 30 additions & 24 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jest-watch-typeahead",
"version": "0.5.0",
"version": "0.6.0",
"main": "build/index.js",
"author": "Rogelio Guzman <rogelioguzmanh@gmail.com>",
"description": "Jest plugin for filtering by filename or test name",
@@ -22,35 +22,38 @@
"prebuild": "rimraf build",
"build": "babel src --ignore **/*.test.js,integration -d build",
"prepublish": "yarn build",
"format": "prettier --single-quote --trailing-comma all --write \"!(build)/**/*.js\""
"format": "prettier --write \"**/*.js\""
},
"dependencies": {
"ansi-escapes": "^4.2.1",
"chalk": "^3.0.0",
"jest-regex-util": "^25.2.1",
"jest-watcher": "^25.2.4",
"ansi-escapes": "^4.3.1",
"chalk": "^4.0.0",
"jest-regex-util": "^26.0.0",
"jest-watcher": "^26.0.0",
"slash": "^3.0.0",
"string-length": "^3.1.0",
"string-length": "^4.0.1",
"strip-ansi": "^6.0.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-flow": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^25.2.4",
"eslint": "^6.2.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.1.0",
"eslint-plugin-flowtype": "^4.2.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-prettier": "^3.0.1",
"flow-bin": "^0.121.0",
"jest": "^25.2.4",
"prettier": "^1.13.7",
"rimraf": "^3.0.0"
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-flow": "^7.9.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.0.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-flowtype": "^4.7.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.9.0",
"eslint-plugin-prettier": "^3.1.3",
"flow-bin": "^0.123.0",
"jest": "^26.0.0",
"prettier": "2.0.5",
"rimraf": "^3.0.2"
},
"peerDependencies": {
"jest": "^26.0.0"
},
"jest": {
"watchPlugins": [
@@ -68,5 +71,8 @@
"/node_modules/",
"/__mocks__/"
]
},
"engines": {
"node": ">=10"
}
}
2 changes: 1 addition & 1 deletion src/file_name_plugin/plugin.js
Original file line number Diff line number Diff line change
@@ -54,7 +54,7 @@ class FileNamePlugin {
const p = new FileNamePatternPrompt(this._stdout, this._prompt);
p.updateSearchSources(this._projects);
return new Promise((res, rej) => {
p.run(value => {
p.run((value) => {
updateConfigAndRun({
mode: 'watch',
testPathPattern: removeTrimmingDots(value)
6 changes: 3 additions & 3 deletions src/file_name_plugin/prompt.js
Original file line number Diff line number Diff line change
@@ -71,7 +71,7 @@ export default class FileNamePatternPrompt extends PatternPrompt {
return highlight(path, filePath, pattern, context.config.rootDir);
})
.map((item, i) => formatTypeaheadSelection(item, i, index, prompt))
.forEach(item => printTypeaheadItem(item, pipe));
.forEach((item) => printTypeaheadItem(item, pipe));

if (total > end) {
printMore('file', pipe, total - end);
@@ -97,8 +97,8 @@ export default class FileNamePatternPrompt extends PatternPrompt {
return this._searchSources.reduce((tests, { testPaths, config }) => {
return tests.concat(
testPaths
.filter(testPath => regex.test(testPath))
.map(path => ({
.filter((testPath) => regex.test(testPath))
.map((path) => ({
path,
context: { config },
})),
2 changes: 1 addition & 1 deletion src/test_name_plugin/plugin.js
Original file line number Diff line number Diff line change
@@ -54,7 +54,7 @@ class TestNamePlugin {
const p = new TestNamePatternPrompt(this._stdout, this._prompt);
p.updateCachedTestResults(this._testResults);
return new Promise((res, rej) => {
p.run(value => {
p.run((value) => {
updateConfigAndRun({
mode: 'watch',
testNamePattern: escapeStrForRegex(removeTrimmingDots(value)),
4 changes: 2 additions & 2 deletions src/test_name_plugin/prompt.js
Original file line number Diff line number Diff line change
@@ -63,9 +63,9 @@ class TestNamePatternPrompt extends PatternPrompt {

matchedTests
.slice(start, end)
.map(name => formatTestNameByPattern(name, pattern, width - 4))
.map((name) => formatTestNameByPattern(name, pattern, width - 4))
.map((item, i) => formatTypeaheadSelection(item, i, index, prompt))
.forEach(item => printTypeaheadItem(item, pipe));
.forEach((item) => printTypeaheadItem(item, pipe));

if (total > end) {
printMore('test', pipe, total - end);
14 changes: 7 additions & 7 deletions src/test_utils/pluginTester.js
Original file line number Diff line number Diff line change
@@ -2,26 +2,26 @@ import { JestHook } from 'jest-watcher';
import stripAnsi from 'strip-ansi';

expect.addSnapshotSerializer({
test: val => typeof val === 'string',
print: val => stripAnsi(val),
test: (val) => typeof val === 'string',
print: (val) => stripAnsi(val),
});

/**
* See https://github.com/facebook/jest/pull/7523 for more details
*/
const CLEAR = '\x1B[2J\x1B[3J\x1B[H';
expect.addSnapshotSerializer({
test: val => val.includes(CLEAR),
print: val => stripAnsi(val.replace(CLEAR, '[MOCK - clear]')),
test: (val) => val.includes(CLEAR),
print: (val) => stripAnsi(val.replace(CLEAR, '[MOCK - clear]')),
});

/**
* See https://github.com/facebook/jest/pull/7523 for more details
*/
const WINDOWS_CLEAR = '\x1B[2J\x1B[0f';
expect.addSnapshotSerializer({
test: val => val.includes(WINDOWS_CLEAR),
print: val => stripAnsi(val.replace(WINDOWS_CLEAR, '[MOCK - clear]')),
test: (val) => val.includes(WINDOWS_CLEAR),
print: (val) => stripAnsi(val.replace(WINDOWS_CLEAR, '[MOCK - clear]')),
});

const pluginTester = (Plugin, options = {}) => {
@@ -33,7 +33,7 @@ const pluginTester = (Plugin, options = {}) => {
const plugin = new Plugin({ stdout, config: options.config });
plugin.apply(jestHooks.getSubscriber());

const type = (...keys) => keys.forEach(key => plugin.onKey(key));
const type = (...keys) => keys.forEach((key) => plugin.onKey(key));

return {
stdout,
1,597 changes: 917 additions & 680 deletions yarn.lock

Large diffs are not rendered by default.