You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# xk6-passkeys
2
2
3
-
A k6 extension for testing passkey backends ("WebAuthn servers"). With this extension, you can loadtest your passkey registration and login flows.
3
+
A k6 extension for load-testing passkey backends ("WebAuthn servers"). With this extension, you can load-test your passkey registration and login flows.
4
4
5
5
## Prerequisites
6
6
@@ -23,24 +23,24 @@ This will create a `k6` binary in the current directory with the extension compi
23
23
24
24
## Examples
25
25
26
-
We have implemented two example loadtests in the `examples` directory: one for registration and one for login.
26
+
We have implemented two example load-tests in the `examples` directory: one for registration and one for login.
27
27
28
-
Since a passkeys backend is required for testing, we provide a sample backend for loadtesting. To start the backend, execute the following commands:
28
+
Since a passkeys backend is required for load-testing, we provide a sample backend for load-testing. To start the backend, execute the following commands:
29
29
30
30
```bash
31
31
docker build -t passkeys-backend examples/backend
32
32
docker run -p 8080:8080 passkeys-backend
33
33
```
34
34
35
-
🚨 **The backend has been implemented solely for testing purposes. It has not been reviewed, secured, thoroughly tested, nor does it adhere to best practices.**
35
+
🚨 **The backend has been implemented solely for load-testing purposes. It has not been reviewed, secured, thoroughly tested, nor does it adhere to best practices.**
36
36
37
-
To loadtest the registration flow, run the following command (**in a different terminal**):
37
+
To load-test the registration flow, run the following command (**in a different terminal**):
38
38
39
39
```bash
40
40
./k6 run examples/registration.js
41
41
```
42
42
43
-
To loadtest the login flow, run the following command (**in a different terminal**):
43
+
To load-test the login flow, run the following command (**in a different terminal**):
0 commit comments