Skip to content

Commit

Permalink
uncomment tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Jesse Schmidt committed Jun 25, 2024
1 parent 92a3b46 commit c3a263c
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions e2e_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,23 +74,23 @@ func TestCmdSuite(t *testing.T) {

logger.Info("%v", slog.Any("cert", rootCA))

// suite.Run(t, &CmdTestSuite{
// composeFile: "docker/docker-compose.yml",
// suiteFlags: []string{"--log-level debug"},
// avsIP: "localhost",
// })
// suite.Run(t, &CmdTestSuite{
// composeFile: "docker/tls/docker-compose.yml",
// suiteFlags: []string{
// "--log-level debug",
// createFlagStr(flags.TLSCaFile, "docker/tls/config/tls/ca.aerospike.com.crt"),
// },
// avsTLSConfig: &tls.Config{
// Certificates: nil,
// RootCAs: rootCA,
// },
// avsIP: "localhost",
// })
suite.Run(t, &CmdTestSuite{
composeFile: "docker/docker-compose.yml",
suiteFlags: []string{"--log-level debug"},
avsIP: "localhost",
})
suite.Run(t, &CmdTestSuite{
composeFile: "docker/tls/docker-compose.yml",
suiteFlags: []string{
"--log-level debug",
createFlagStr(flags.TLSCaFile, "docker/tls/config/tls/ca.aerospike.com.crt"),
},
avsTLSConfig: &tls.Config{
Certificates: nil,
RootCAs: rootCA,
},
avsIP: "localhost",
})
suite.Run(t, &CmdTestSuite{
composeFile: "docker/auth/docker-compose.yml",
suiteFlags: []string{
Expand Down

0 comments on commit c3a263c

Please sign in to comment.