JavaScript アプリケーションの Jasmine/Karma 単体テストは初めてです。バンドルにAngular 1.4.12とWebpack 1.13.1を使用している現在のプロジェクトに実装しようとしています。私のフォルダ構造は次のとおりです。
「コア」内の index.js ファイルは、Webpack バンドルに必要な他のさまざまなモジュールを要求しようとしています。ファイルは次のようになります。
require('../../bower_components/font-awesome/css/font-awesome.min.css');
require('../../bower_components/bootstrap/dist/css/bootstrap.min.css');
require('./scripts/app');
require('./scripts/index');
require('./views/index');
require('./styles/index');
ここで、 'modules/st/scripts/controllers/st.test.js'にあるサンプル テスト ファイルを実行しようとすると、次のエラー メッセージが表示されます。
キャッチされないエラー: モジュール名 "../../bower_components/font-awesome/css/font-awesome.min.css" は、コンテキストに対してまだ読み込まれていません: _. C:/gitcode/repo/fm-dashboard/node_modules/requirejs/require.js:143 でrequire([])
http://requirejs.org/docs/errors.html#notloadedを使用します。
私の karma.conf.js ファイルは次のようになります。
var webpack = require('webpack');
var getWebpackConfig = require('./webpack.config.js');
var webpackConfig = getWebpackConfig('test');
webpackConfig.output.path = __dirname+'/_build/test';
webpackConfig.entry = {};
// Karma configuration
module.exports = function(config) {
config.set({
// base path that will be used to resolve all patterns (eg. files, exclude)
basePath: '',
// frameworks to use
// available frameworks: https://npmjs.org/browse/keyword/karma-adapter
frameworks: ['jasmine'],
// list of files / patterns to load in the browser
files: [
'./node_modules/requirejs/require.js',
'./app/core/index.js',
'./bower_components/angular/angular.js',
'./bower_components/angular-mocks/angular-mocks.js'
],
// list of files to exclude
exclude: [
],
// preprocess matching files before serving them to the browser
// available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor
preprocessors: {
'../app/core/index.js': ['webpack']
},
// test results reporter to use
// possible values: 'dots', 'progress'
// available reporters: https://npmjs.org/browse/keyword/karma-reporter
reporters: ['progress'],
// web server port
port: 9876,
// enable / disable colors in the output (reporters and logs)
colors: true,
// level of logging
// possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
logLevel: config.LOG_INFO,
// enable / disable watching file and executing tests whenever any file changes
autoWatch: true,
// start these browsers
// available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
browsers: ['Chrome'],
// Continuous Integration mode
// if true, Karma captures browsers, runs the tests and exits
singleRun: true,
// Concurrency level
// how many browser should be started simultaneous
concurrency: Infinity,
webpack: webpackConfig,
webpackMiddleware: {
noInfo: true
}
})
}
プリプロセッサ オブジェクトに Webpack を含めると、この必要な問題が解決されるという印象を受けましたが、そうではないようです。
数人が提案したように、プリプロセッサ オブジェクトとフレームワーク配列に「commonjs」を含めようとしましたが、役に立ちませんでした。この「必須」の問題を取り除き、テストを進める方法を教えてください。
前もって感謝します。