Files
xahau.js/packages/xahau/test/webpack.config.js
Denis Angell 9544e1794e xahau-patch
2025-03-14 15:08:35 +01:00

15 lines
349 B
JavaScript

const { merge } = require('webpack-merge')
const { webpackForTest } = require('../../../weback.test.config')
module.exports = merge(
require('../webpack.base.config'),
webpackForTest('./test/integration/index.ts', __dirname),
{
externals: [
{
net: 'null', // net is used in tests to setup mock server
},
],
},
)