Added java-maven to the list of components to be tested (#4427)

This commit is contained in:
Rodolfo Napoles
2021-02-11 16:39:38 -05:00
committed by GitHub
parent e8030b19a3
commit 8c96ec826a

View File

@@ -18,7 +18,7 @@ import (
// - java-springboot
// - java-quarkus
// - java-openliberty
// - java-maven, no starter project available at the time this script was developed, so skiping this component for now
// - java-maven
var _ = Describe("odo devfile supported tests", func() {
var componentName, projectDirPath string
@@ -75,6 +75,9 @@ var _ = Describe("odo devfile supported tests", func() {
It("Verify output debug information for java-quarkus debug works", func() {
createStarterProjAndSetDebug("java-quarkus")
})
It("Verify output debug information for java-maven debug works", func() {
createStarterProjAndSetDebug("java-maven")
})
})
})