mirror of
https://github.com/zitadel/zitadel
synced 2024-11-21 16:30:53 +00:00
1ce9a4322e
# Which Problems Are Solved Currently there was no load test present for machine jwt profile grant. This test is now added # How the Problems Are Solved K6 test implemented. # Additional Context - part of https://github.com/zitadel/zitadel/issues/8352
40 lines
944 B
JavaScript
40 lines
944 B
JavaScript
const path = require('path');
|
|
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
|
|
const CopyPlugin = require('copy-webpack-plugin');
|
|
const GlobEntries = require('webpack-glob-entries');
|
|
|
|
module.exports = {
|
|
mode: 'production',
|
|
entry: GlobEntries('./src/use_cases/*.ts'), // Generates multiple entry for each test
|
|
output: {
|
|
path: path.join(__dirname, 'dist'),
|
|
libraryTarget: 'commonjs',
|
|
filename: '[name].js',
|
|
},
|
|
resolve: {
|
|
extensions: ['.ts', '.js'],
|
|
},
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.ts$/,
|
|
use: 'babel-loader',
|
|
exclude: /node_modules/,
|
|
},
|
|
],
|
|
},
|
|
target: 'web',
|
|
externals: /^(k6|https?\:\/\/)(\/.*)?/,
|
|
// Generate map files for compiled scripts
|
|
devtool: "source-map",
|
|
stats: {
|
|
colors: true,
|
|
},
|
|
plugins: [
|
|
new CleanWebpackPlugin(),
|
|
],
|
|
optimization: {
|
|
// Don't minimize, as it's not used in the browser
|
|
minimize: false,
|
|
},
|
|
}; |