| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- /**
- * Config responsible for building End-to-End test files (bundled into `test/dist/`):
- * - e2e.entry.js
- * - helpers.entry.js
- */
- const path = require('path');
- const webpack = require('webpack');
- const configFactory = require('./base');
- const JasmineHtml = require('./plugin/jasmine-html');
- module.exports.create = function create(envArgs) {
- const config = configFactory.create(envArgs);
- config.forEach(function(c) {
- c.devtool = 'cheap-module-source-map';
- c.target = 'web';
- c.output = {
- libraryTarget: 'var',
- filename: '[name].entry.js',
- path: path.resolve(__dirname, '../test/dist'),
- };
- c.resolve.alias.handsontable = path.resolve(__dirname, '../src');
- c.module.rules.unshift({
- test: [
- // Disable loading css files from pikaday module
- /pikaday\/css/,
- ],
- loader: path.resolve(__dirname, 'loader/empty-loader.js'),
- });
- c.externals = [
- {
- window: 'window',
- },
- ];
- c.plugins.push(
- new JasmineHtml({
- filename: path.resolve(__dirname, '../test/E2ERunner.html'),
- baseJasminePath: '../',
- externalCssFiles: [
- 'lib/normalize.css',
- '../dist/handsontable.css',
- 'helpers/common.css',
- ],
- externalJsFiles: [
- 'helpers/jasmine-bridge-reporter.js',
- 'lib/jquery.min.js',
- 'lib/jquery.simulate.js',
- 'lib/lodash.underscore.js',
- 'lib/backbone.js',
- '../node_modules/numbro/dist/numbro.js',
- '../node_modules/numbro/dist/languages.min.js',
- '../dist/moment/moment.js',
- '../dist/pikaday/pikaday.js',
- '../dist/handsontable.js',
- '../dist/languages/all.js',
- ],
- })
- );
- c.node.global = true;
- });
- return [].concat(config);
- }
|