Skip to content

Commit

Permalink
Temporarily skip the test step on Podman that connects to the forward…
Browse files Browse the repository at this point in the history
…ed debug port until [1] is fixed

We can work on fixing the issue on Podman in a separate PR.

[1] #6510
  • Loading branch information
rm3l committed Jan 19, 2023
1 parent b87936e commit 6799fa7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/integration/cmd_dev_debug_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,10 @@ var _ = Describe("odo dev debug command tests", func() {
By("connecting to the application port", func() {
helper.HttpWaitForWithStatus("http://"+ports["3000"], "Hello from Node.js Starter Application!", 12, 5, 200)
})
if podman {
//TODO(rm3l): Remove this once https://github.com/redhat-developer/odo/issues/6510 is fixed
Skip("temporarily skipped on Podman because of https://github.com/redhat-developer/odo/issues/6510")
}
By("expecting a ws connection when tried to connect on default debug port locally", func() {
// 400 response expected because the endpoint expects a websocket request and we are doing a HTTP GET
// We are just using this to validate if nodejs agent is listening on the other side
Expand Down

0 comments on commit 6799fa7

Please sign in to comment.