Skip to content
Permalink
87f255c5a1
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 14 lines (11 sloc) 273 Bytes
#!/usr/bin/env bats
load ../../../common
load ../../../library
@test "000 Initialize and start midPoint" {
run docker-compose down -v
docker-compose up -d
wait_for_midpoint_start simple_midpoint-server_1
}
@test "999 Clean up" {
docker-compose down -v
}