Review comment. Remove artillary for delete-user

This commit is contained in:
Timon Back
2021-09-28 18:03:43 +02:00
parent 73d76ea4b7
commit 4d0b47a479

View File

@@ -1,25 +0,0 @@
# Load testing with Artillery.
# Can also be good for seeding database with lots of dummy data.
# https://www.npmjs.com/package/artillery
# https://www.npmjs.com/package/artillery-plugin-faker
config:
target: http://localhost:3000/v1
phases:
- duration: 2
arrivalRate: 150
plugins:
faker:
locale: en
variables:
email: '$faker.internet.email'
country: '$faker.address.country'
street: '$faker.address.streetName'
scenarios:
- flow:
- post:
url: '/users'
json:
email: '{{ email }}'
country: '{{ country }}'
postalCode: '12345'
street: '{{ street }}'