Skip to content

Commit

Permalink
fix: remove socket check from e2e (#297)
Browse files Browse the repository at this point in the history
  • Loading branch information
yitsushi authored Nov 30, 2021
1 parent 66dbe6e commit bfe06dc
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions test/e2e/e2e_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,6 @@ func TestE2E(t *testing.T) {

log.Println("TEST STEP: getting (and verifying) existing MicroVM")
Eventually(func(g Gomega) error {
// verify that the socket exists
g.Expect(fmt.Sprintf(fcPath, mvmNS, mvmID) + "/firecracker.sock").To(BeAnExistingFile())

// verify that firecracker has started and that a pid has been saved
// and that there is actually a running process
mvmPid1 = u.ReadPID(fmt.Sprintf(fcPath, mvmNS, mvmID))
Expand All @@ -70,9 +67,6 @@ func TestE2E(t *testing.T) {

log.Println("TEST STEP: listing all MicroVMs")
Eventually(func(g Gomega) error {
// verify that the new socket exists
g.Expect(fmt.Sprintf(fcPath, mvmNS, secondMvmID) + "/firecracker.sock").To(BeAnExistingFile())

// verify that firecracker has started and that a pid has been saved
// and that there is actually a running process for the new mVM
mvmPid2 = u.ReadPID(fmt.Sprintf(fcPath, mvmNS, secondMvmID))
Expand Down

0 comments on commit bfe06dc

Please sign in to comment.