This commit is contained in:
Sara Aimée Smiseth 2022-07-20 10:46:09 +02:00 committed by GitHub
commit 30e66a445b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 44 additions and 2 deletions

View file

@ -86,3 +86,21 @@ load 'bats/bats-assert/load'
assert_success
assert_output
}
@test "Should serve register_apps" {
run bash -c "sudo docker-compose logs | grep \"Serving 'register_apps' at https:\/\/localhost:5281\/register_apps\""
assert_success
assert_output
}
@test "Should serve invites_page" {
run bash -c "sudo docker-compose logs | grep \"Serving 'invites_page' at https:\/\/localhost:5281\/invite\""
assert_success
assert_output
}
@test "Should serve invites_register_web" {
run bash -c "sudo docker-compose logs | grep \"Serving 'invites_register_web' at https:\/\/localhost:5281\/register\""
assert_success
assert_output
}