HOME


Mini Shell 1.0
La Pieza.DO | Todo lo que buscas!

Bienvenido de nuevo!

Acceso Cuenta Delivery
DIR: /var/www/devs.lapieza.net/node_modules/pusher-js/spec/config/karma/
Upload File :
Current File : /var/www/devs.lapieza.net/node_modules/pusher-js/spec/config/karma/config.integration.js
const { merge } = require('webpack-merge');
const webpack = require('webpack');
const commonConfig = require('./config.common');

module.exports = merge({}, commonConfig, {
  files: [
    '**/spec/javascripts/integration/index.web.js'
  ],
  preprocessors: {
    '**/spec/javascripts/integration/index.web.js': ['webpack']
  },

  webpack: {
    resolve: {
      modules: ['spec/javascripts/helpers/web'],
      alias: {
        integration: 'web/integration'
      }
    },
    plugins: [
      new webpack.DefinePlugin({
        'process.env.MINIMAL_INTEGRATION_TESTS': JSON.stringify(process.env.MINIMAL_INTEGRATION_TESTS),
      })
    ],
  }
});