找不到模块“模块” – Rewire.js

我试图用我的Karma(Webpack + Typescript)unit testing来rewire使用rewire。 我的unit testing是用Typescript编写的,与Webpack捆绑在一起,然后与Karma一起运行。 我不断收到错误:

 PhantomJS 2.1.1 (Windows 7 0.0.0) ERROR Error: Cannot find module "module" at src/myTest.spec.ts:187 

我研究了Rewire的代码,问题来自线路

 var Module = require("module"), 

我知道有一个Webpack Rewire插件,但是当我使用它时,我遇到了与已经报告过的问题相同的问题 。

我所有的testing,不使用rewire工作正常。

这是我的testing文件:

 import rewire = require("rewire"); const decorators = rewire("./decorators"); describe('something', () => { it('should do something', () => { decorators.__set__('Test', () => 'hello'); // In know this is pointless, but it's just to make sure that rewire works. expect(decorators.Test).toBe('hello'); }); }); 

这是我的webpackconfiguration:

 var webpack = require('webpack'); var path = require('path'); var fs = require('fs'); var nodeModules = {}; fs.readdirSync('node_modules') .filter(function (x) { return ['.bin'].indexOf(x) === -1; }) .forEach(function (mod) { nodeModules[mod] = 'commonjs ' + mod; }); // Our Webpack Defaults var webpackConfig = { entry: './src/index.ts', target: 'node', module: { loaders: [ {test: /\.ts$/, loaders: ['ts-loader'], exclude: /node_modules/} ] }, plugins: [ new webpack.BannerPlugin({banner: 'require("source-map-support").install();', raw: true, entryOnly: false}), new webpack.optimize.UglifyJsPlugin({sourceMap: true}), new webpack.optimize.AggressiveMergingPlugin(), ], output: { path: path.resolve(__dirname, './dist'), filename: 'index.js', sourceMapFilename: 'index.map' }, externals: nodeModules, devtool: 'source-map', resolve: { extensions: ['.ts', '.js'] } }; module.exports = webpackConfig; 

这是我的(相关的)我的karma.conf.js一部分:

 frameworks: ['jasmine'], files: [ 'src/**/*.spec.ts', 'test/**/*.ts' ], exclude: [], webpack: { devtool: webpackConfig.devtool, module: webpackConfig.module, resolve: webpackConfig.resolve, }, webpackMiddleware: { quiet: true, stats: { colors: true } }, preprocessors: { 'src/**/*.spec.ts': ['webpack', 'sourcemap'], 'test/**/*.ts': ['webpack', 'sourcemap'] },