24 lines
257 B
Plaintext
24 lines
257 B
Plaintext
meta {
|
|
name: Login
|
|
type: http
|
|
seq: 1
|
|
}
|
|
|
|
post {
|
|
url: {{api_url}}/auth/login
|
|
body: json
|
|
auth: none
|
|
}
|
|
|
|
body:json {
|
|
{
|
|
"email":"[email protected]",
|
|
"password":"123"
|
|
}
|
|
}
|
|
|
|
tests {
|
|
let data = res.getBody();
|
|
bru.setEnvVar("token",data.token);
|
|
}
|