UNPKG
k6-test-framework
Version:
latest (1.0.0)
1.0.0
Enterprise-grade load testing solution with k6
k6-test-framework
/
config
/
environments.js
12 lines
(11 loc)
•
233 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
// config/environments.js
export
const environments = { staging: { baseUrl:
"https://staging.reqres.in/api"
,
timeout
: 10000, }, production: { baseUrl:
"https://reqres.in/api"
,
timeout
: 15000, }, };