1

Webpack を使用して、Angular js コードをバンドルしています。ただし、モカ ベースの単体テスト ケースを作成できません。bcz gulp-mocha は css の「要求」に失敗しています。以下は、詳細のコード スニペットです。

Benefits.js angular js ディレクティブ:

var Utilities = require("./../../../../../utilities/Utilities");
var AppUtilities = require("./../../../../../utilities/AppUtilities");
require("./../../../../css/benefits.css");
module.exports = {
    getBenefits: function ($sce) {
        return {
            restrict: "E",
            template: require('html!./../../../../templates/page/Benefits.html'),
            replace: true,
            scope: {
                benefits: '=',
                productPageBenefits: '=',
                divider: '='
            },
            link: function (scope, element, attrs) {

                //get benefit details as per given list of key
                scope.getBenefitsList = function (benefitKeyList, benefits) {
                    return OpensiteUtilities.getBenefitsList(benefitKeyList, benefits);
                };

            }
        };
    }
};

Benefits_test.js は単体テスト ケース ファイルです。

describe('The Benefits', function () {
    var Benefits = require('../../../../../../../../application/client-src/js/application/directives/productpage/Benefits.js');

    beforeEach(function () {

    });

    it('Should be an Object', function () {
        Benefits.should.be.a('Object');
        expect(Benefits).to.have.property('getBenefits');       
    });

});

次のエラーが表示されます

/my/path/application/client-src/css/benefits.css:1
(function (exports, require, module, __filename, __dirname) { @media (min-widt
                                                              ^
[16:18:49] { [SyntaxError: Unexpected token ILLEGAL]
  name: 'SyntaxError',
  message: 'Unexpected token ILLEGAL',
  stack: 'SyntaxError: Unexpected token ILLEGAL\n    at Module._compile (module.js:439:25)\n    at Object.Module._extensions..js (module.js:474:10)\n    at Module.load (module.js:356:32)\n    at Function.Module._load (module.js:312:12)\n    at Module.require (module.js:364:17)\n    at require (module.js:380:17)\n    at Object.<anonymous> (/my/path/application/client-src/js/application/directives/productpage/Benefits.js:9:1)\n    at Module._compile (module.js:456:26)\n    at Object.Module._extensions..js (module.js:474:10)\n    at Module.load (module.js:356:32)\n    at Function.Module._load (module.js:312:12)\n    at Module.require (module.js:364:17)\n    at require (module.js:380:17)\n    at Suite.<anonymous> (/my/path/test/application/client-src/js/application/directives/productpage/Benefits_test.js:20:20)\n    at context.describe.context.context (/my/path/node_modules/jumpstart-engine/node_modules/gulp-mocha/node_modules/mocha/lib/interfaces/bdd.js:75:10)\n    at Object.<anonymous> (/my/path/test/application/client-src/js/application/directives/productpage/Benefits_test.js:19:1)',
  showStack: false,
  showProperties: true,
  plugin: 'gulp-mocha' }

失敗した bcz gulp-mocha が「css」ファイルを理解できないことを理解しています。テストケースを書くにはどうすればよいですか?require(./../benefits.css)" " をディレクティブ コードの外に移動する必要がありますか?

すべての依存関係を同じディレクティブ コードに保持したい (webpack を使用)。助けてください

4

1 に答える 1

1

1 つのオプションは、 mocha-loaderを介して Mocha をトリガーし、 null-loaderを介してロードされるように CSS を設定することです。requireこれにより、発生している問題が修正されるはずです。

Webpack 以外で解決したい場合は、require何らかの方法でパッチを当てる必要があります。その場合、 proxyquiremockery 、またはrewireなどを使用したいと思うでしょう。

于 2015-06-19T08:43:27.567 に答える