Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Naveen-is-here committed May 24, 2024
1 parent 3951553 commit 14e3e8d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions integration/node_start_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,9 @@ func testNodeStart(t *testing.T, context spec.G, it spec.S) {
Expect(os.WriteFile(filepath.Join(source, "Procfile"), []byte("procfile: echo Procfile command"), 0644)).To(Succeed())
})

// it.After(func() {
// Expect(docker.Container.Remove.Execute(procfileContainer.ID)).To(Succeed())
// })
it.After(func() {
Expect(docker.Container.Remove.Execute(procfileContainer.ID)).To(Succeed())
})

it("should build a working OCI image and run the app with the start command from the Procfile and other utility buildpacks", func() {
var err error
Expand All @@ -110,7 +110,7 @@ func testNodeStart(t *testing.T, context spec.G, it spec.S) {
Expect(logs).To(ContainLines(ContainSubstring("Buildpack for Node Engine")))
Expect(logs).To(ContainLines(ContainSubstring("Buildpack for Node Start")))
Expect(logs).To(ContainLines(ContainSubstring("Buildpack for Procfile")))
// Expect(logs).To(ContainLines(ContainSubstring("Buildpack for Datadog")))
Expect(logs).To(ContainLines(ContainSubstring("Buildpack for Datadog")))
Expect(logs).To(ContainLines(ContainSubstring("Buildpack for Environment Variables")))
Expect(logs).To(ContainLines(ContainSubstring("Buildpack for Image Labels")))
Expect(logs).To(ContainLines(ContainSubstring("Buildpack for Watchexec")))
Expand Down

0 comments on commit 14e3e8d

Please sign in to comment.