Files
SAE-BUT2-backend/tests/hello.bru
T
2025-10-21 17:41:44 +02:00

26 lines
324 B
Plaintext

meta {
name: hello
type: http
seq: 3
}
get {
url: http://localhost:8000/api/hello
body: none
auth: inherit
}
assert {
res.status: eq 200
res.body: eq Hello
}
settings {
encodeUrl: true
timeout: 0
}
docs {
Permet de tester la route hello et verifier si le serveur laravel backend est bien allumé
}