Implement routes to list, get and delete execution environments
* #9 Implement routes to list, get and delete execution environments. A refactoring was required to introduce the ExecutionEnvironment interface. * Fix MR comments, linting issues and bug that lead to e2e test failure * Add e2e tests * Add unit tests
This commit is contained in:
@ -20,10 +20,8 @@ const (
|
||||
AnotherEnvironmentIDAsString = "42"
|
||||
DefaultUUID = "MY-DEFAULT-RANDOM-UUID"
|
||||
AnotherUUID = "another-uuid-43"
|
||||
DefaultJobID = DefaultEnvironmentIDAsString + "-" + DefaultUUID
|
||||
AnotherJobID = AnotherEnvironmentIDAsString + "-" + AnotherUUID
|
||||
DefaultRunnerID = DefaultJobID
|
||||
AnotherRunnerID = AnotherJobID
|
||||
DefaultRunnerID = DefaultEnvironmentIDAsString + "-" + DefaultUUID
|
||||
AnotherRunnerID = AnotherEnvironmentIDAsString + "-" + AnotherUUID
|
||||
DefaultExecutionID = "s0m3-3x3cu710n-1d"
|
||||
DefaultMockID = "m0ck-1d"
|
||||
ShortTimeout = 100 * time.Millisecond
|
||||
|
Reference in New Issue
Block a user