xahau-patch

This commit is contained in:
Denis Angell
2025-03-12 13:34:24 +01:00
parent 92eb809397
commit 9544e1794e
958 changed files with 1686 additions and 169992 deletions

View File

@@ -0,0 +1,14 @@
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
},
],
},
)