test(load): machine jwt profile grant (#8482)

# 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
This commit is contained in:
Silvan
2024-08-27 15:06:03 +02:00
committed by GitHub
parent cbbd44c303
commit 1ce9a4322e
9 changed files with 231 additions and 62 deletions

View File

@@ -4,30 +4,30 @@
"repository": "ssh://git@github.com/zitadel/zitadel.git",
"author": "ZITADEL Authors <hi@zitadel.com>",
"engines": {
"node": "16 || 18 || 20"
"node": "18 || 20"
},
"license": "Apache-2.0",
"devDependencies": {
"@babel/core": "7.23.7",
"@babel/plugin-proposal-class-properties": "7.13.0",
"@babel/plugin-proposal-object-rest-spread": "7.13.8",
"@babel/preset-env": "7.23.8",
"@babel/preset-typescript": "7.23.3",
"@types/k6": ">=0.50.0",
"@types/webpack": "5.28.5",
"babel-loader": "9.1.3",
"clean-webpack-plugin": "4.0.0",
"copy-webpack-plugin": "^12.0.2",
"typescript": "5.4.5",
"webpack": "5.89.0",
"webpack-cli": "5.1.4",
"webpack-glob-entries": "^1.0.1",
"prettier": "^3.1.1",
"prettier-plugin-organize-imports": "^3.2.4"
"@babel/core": "7.23.7",
"@babel/plugin-proposal-class-properties": "7.13.0",
"@babel/plugin-proposal-object-rest-spread": "7.13.8",
"@babel/preset-env": "7.23.8",
"@babel/preset-typescript": "7.23.3",
"@types/k6": ">=0.50.0",
"@types/webpack": "5.28.5",
"babel-loader": "9.1.3",
"clean-webpack-plugin": "4.0.0",
"copy-webpack-plugin": "^12.0.2",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^3.2.4",
"typescript": "5.4.5",
"webpack": "5.89.0",
"webpack-cli": "5.1.4",
"webpack-glob-entries": "^1.0.1"
},
"scripts": {
"bundle": "webpack",
"lint": "prettier --check src",
"lint:fix": "prettier --write src"
"bundle": "webpack",
"lint": "prettier --check src",
"lint:fix": "prettier --write src"
}
}
}