Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonydahanne committed Sep 25, 2023
1 parent 613154c commit 55425c3
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
7 changes: 7 additions & 0 deletions java/akka/smoke_test/akka_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import (
"flag"
"fmt"
"github.com/paketo-buildpacks/samples/tests"
"log"
"os"
"path/filepath"
"strings"
Expand Down Expand Up @@ -96,6 +97,12 @@ func testAkkaWithBuilder(builder string) func(*testing.T, spec.G, spec.S) {
}

var err error
log.Println("YO!!!")
path, err := os.Getwd()
if err != nil {
log.Println(err)
}
fmt.Println(path)
source, err = occam.Source(filepath.Join("../../", "akka"))
Expect(err).NotTo(HaveOccurred())

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import (
"flag"
"fmt"
"github.com/paketo-buildpacks/samples/tests"
"log"
"os"
"path/filepath"
"testing"
Expand Down Expand Up @@ -91,6 +92,12 @@ func testApplicationInsightsWithBuilders(builder string) func(*testing.T, spec.G
context("app uses application insights", func() {
it("builds successfully", func() {
var err error
log.Println("YO!!!")
path, err := os.Getwd()
if err != nil {
log.Println(err)
}
fmt.Println(path)
source, err = occam.Source(filepath.Join("../../java", "application-insights"))
Expect(err).NotTo(HaveOccurred())

Expand Down

0 comments on commit 55425c3

Please sign in to comment.