0

述べたように、私は React で Meteor アプリケーションを実行しており、Mocha でテストを書き始めています。現在、何もテストしない基本的なテストがあります。

クライアント/見込み客/ProspectForm.tests.jsx

import React from 'react';
import { shallow } from 'enzyme';

describe('<Foo />', () => {

  it('calls componentDidMount', () => {
  });

});

テストサーバーを起動すると、次のエラーが表示されます

エラー

モジュール「has」が見つかりません。問題は酵素に由来するようですが、新しい流星アプリを作成して酵素と実用的な流星:モカを追加し、同じテストを追加すると問題なく動作するため、このアプリの環境に関係があるはずです。

これが私のpackage.jsonです

    {
  "name": "myApp",
  "private": true,
  "scripts": {
    "start": "meteor run"
  },
  "dependencies": {
    "material-ui": "^0.15.0",
    "meteor-node-stubs": "~0.2.0",
    "react": "^15.0.2",
    "react-addons-pure-render-mixin": "^15.0.1",
    "react-datepicker": "^0.27.0",
    "react-dom": "^15.0.2",
    "react-mounter": "^1.2.0",
    "react-s-alert": "^1.1.4",
    "react-tap-event-plugin": "^1.0.0"
  },
  "devDependencies": {
    "enzyme": "^2.3.0"
  }
}

これが私の隕石パッケージファイルです

# edgee:slingshot                         # Send files to storage service.
# peerlibrary:aws-sdk                     # Amazon SDK for S3/EC2/etc...


# CORE PACKAGES
meteor-base                               # Meteor platform
mobile-experience                         # Mobile Optimizations
logging                                   # Meteor internal logging
ejson                                     # Extends JSON Types
tracker                                   # Reactive Data Sources
email                                     # Send emails
accounts-password                         # Authentication for users.
es5-shim                                  # ECMAScript 5 compatibility for older browsers.
ecmascript                                # Enable ECMAScript2015+ syntax
standard-minifier-css                     # CSS Minification
standard-minifier-js                      # Javascript Minification
static-html                               # Adds global head tag
reload                                    # Active reload
react-meteor-data                         # Used for react data mixins

stevezhu:lodash                           # Javascript utility library.
momentjs:moment                           # Date library for Javascript.
johnantoni:meteor-normalize               # normalizes css
fourseven:scss                            # SASS stylesheets.
fortawesome:fontawesome                   # Icons.
natestrauser:animate-css                  # Animations using CSS.
mongo                                     # Mongo DB
aldeed:collection2                        # Schemas and validations for database collections.
dburles:collection-helpers                # Create data helpers in ./lib available to client and server.
meteortoys:allthings                      # A number of helpers for deveopment. Activate with control+m
kadira:flow-router                        # Router.
mystor:device-detection                   # Detect device user is using.
semantic:ui-css
practicalmeteor:mocha

ここで何が起こっているのか誰にも分かりませんか?

4

2 に答える 2

1

これらの 2 つの依存関係がまだない場合は、それらもインストールする必要があります。

npm i --save-dev react-addons-test-utils
npm i --save-dev react-dom

react-dom があるように見えますが、test-utils がありません。

于 2016-06-28T07:50:02.507 に答える
0

meteor update を実行するとこれが解決され、Davin が言ったことも実行する必要がありました。

于 2016-06-28T19:28:11.543 に答える