web-dev-qa-db-ja.com

コマンドが見つかりません:jest

次のようなテストファイルがあります:(create-react-appを使用しています)

import React from 'react';
import ReactDOM from 'react-dom';
import App from './components/Calculator';

import { getAction, getResult } from './actions/'

import {shallow} from 'enzyme';
import toJson from 'enzyme-to-json';

import Enzyme from 'enzyme';
import Adapter from 'enzyme-adapter-react-16';

Enzyme.configure({ adapter: new Adapter() });

it('renders without crashing', () => {
  const wrapper = shallow(<App />)
  expect(toJson(wrapper)).toMatchSnapshot();
});

it('displays the choosen operator', () => {
  const action = {
      type: 'GET_ACTION',
      operator: '+'
    };
  expect(getAction("+")).toEqual(action)
})

it('displays the typed digit', () => {
  const action = {
    type: 'GET_RESULT',
    n: 3
  };
  expect(getResult(3)).toEqual(action);
})

it('checks that the clickevent for getNumber is called',() => {
  const clickEvent = jest.fn();
  const p = shallow(<p data-n="1" onClick={clickEvent}>1</p>)
  p.simulate('click')
  expect(clickEvent).toBeCalled();
})

およびpackaje.json:

{
  "name": "my-app",
  "version": "0.1.0",
  "private": true,
  "dependencies": {
    "react": "^16.2.0",
    "react-dom": "^16.2.0",
    "react-scripts": "1.1.1"
  },
  "scripts": {
    "start": "react-scripts start",
    "build": "react-scripts build",
    // "test": "react-scripts test --env=jsdom",
    "test": "jest",
    "eject": "react-scripts eject"
  },
  "devDependencies": {
    "enzyme": "^3.3.0",
    "enzyme-adapter-react-16": "^1.1.1",
    "enzyme-to-json": "^3.3.3",
    "jest": "^22.4.3"
  }
}

「jest --updateSnapshot」を実行すると、次のようになります。

command not found: jest

しかし、jestはインストールされています。

enter image description here

20
Alex

Jestはインストールされていますが、おそらく./node_modules/.binディレクトリにあります。これをコマンド./node_modules/.bin/jest --updateSnapshotに追加できます。 package.jsonjestコマンドとしてscriptsが既にあるので、npm test -- --updateSnapshotで実行することもできます。 npmは自動的に./node_modules/.binをパスに追加します。

37
CaptEmulation

この方法で実行する必要があります:

./node_modules/.bin/jest

またはnpm testを実行します

13
El Aoutar Hamza

Jestコマンドラインインターフェイス(Jest CLI)をインストールします。

npm install --save-dev jest-cli

次に、jestコマンドを実行します。 Windows 10でdockerを使用してLinuxインスタンスで作業する。

6
sybozz

私は同様の問題に遭遇しました。 jestをグローバルにインストールして修正しました。

npm install -g jest
3

Node_modulesを削除してnpm installを再度実行するとこれが修正されましたまた、「新規」npm ciコマンドは、ノードモジュールを削除(またはクリア)し、毎回クリーンインストールを実行し、さらにnode_modulesを手動で削除して再インストールする

1
kidroca

私の場合、npmは何らかの理由でjestコマンドをインストールしませんでした。

これを修正するには:

  1. node_modules/jestディレクトリを削除しました
  2. npm installを再実行し、jestコマンドをインストールしました。
1
tywhang

ただコマンドを使用する

npm testまたはnpm t

1
аlex dykyі