11
2+ @port = 3000
3+
24### Good password
3- POST http://localhost:3000 /auth/signup
5+ POST http://localhost:{{port}} /auth/signup
46content-type: application/json
57
68{
@@ -12,7 +14,7 @@ content-type: application/json
1214}
1315
1416### Password must contain at least one digit
15- POST http://localhost:3000 /auth/signup
17+ POST http://localhost:{{port}} /auth/signup
1618content-type: application/json
1719
1820{
@@ -24,7 +26,7 @@ content-type: application/json
2426}
2527
2628### Password must contain at most 100 characters
27- POST http://localhost:3000 /auth/signup
29+ POST http://localhost:{{port}} /auth/signup
2830content-type: application/json
2931
3032{
@@ -36,7 +38,7 @@ content-type: application/json
3638}
3739
3840### Password must contain at least 8 characters
39- POST http://localhost:3000 /auth/signup
41+ POST http://localhost:{{port}} /auth/signup
4042content-type: application/json
4143
4244{
@@ -48,7 +50,7 @@ content-type: application/json
4850}
4951
5052### Password must contain at least one special character
51- POST http://localhost:3000 /auth/signup
53+ POST http://localhost:{{port}} /auth/signup
5254content-type: application/json
5355
5456{
@@ -60,7 +62,7 @@ content-type: application/json
6062}
6163
6264### First name must be at least 1 character
63- POST http://localhost:3000 /auth/signup
65+ POST http://localhost:{{port}} /auth/signup
6466content-type: application/json
6567
6668{
@@ -72,7 +74,7 @@ content-type: application/json
7274}
7375
7476### First name must be at most 30 characters
75- POST http://localhost:3000 /auth/signup
77+ POST http://localhost:{{port}} /auth/signup
7678content-type: application/json
7779
7880{
@@ -84,7 +86,7 @@ content-type: application/json
8486}
8587
8688### Last name must be at least 1 characters
87- POST http://localhost:3000 /auth/signup
89+ POST http://localhost:{{port}} /auth/signup
8890content-type: application/json
8991
9092{
@@ -96,7 +98,7 @@ content-type: application/json
9698}
9799
98100### Last name must be at most 30 characters
99- POST http://localhost:3000 /auth/signup
101+ POST http://localhost:{{port}} /auth/signup
100102content-type: application/json
101103
102104{
@@ -108,7 +110,7 @@ content-type: application/json
108110}
109111
110112### Invalid email address
111- POST http://localhost:3000 /auth/signup
113+ POST http://localhost:{{port}} /auth/signup
112114content-type: application/json
113115
114116{
@@ -120,7 +122,7 @@ content-type: application/json
120122}
121123
122124### Invalid role
123- POST http://localhost:3000 /auth/signup
125+ POST http://localhost:{{port}} /auth/signup
124126content-type: application/json
125127
126128{
0 commit comments