Skip to content

Commit

Permalink
Run on quickstart-demo
Browse files Browse the repository at this point in the history
  • Loading branch information
feloy committed Jan 20, 2023
1 parent 88c0e7f commit c0c2765
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ $ odo dev

↪ Dev mode
Status:
Watching for changes in the current directory /home/user/quickstart-demo/dotnet-demo
Watching for changes in the current directory /home/user/quickstart-demo

Keyboard Commands:
[Ctrl+c] - Exit and delete resources from the cluster
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ $ odo dev

↪ Dev mode
Status:
Watching for changes in the current directory /home/user/quickstart-demo/go-demo
Watching for changes in the current directory /home/user/quickstart-demo

Keyboard Commands:
[Ctrl+c] - Exit and delete resources from the cluster
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ $ odo dev

↪ Dev mode
Status:
Watching for changes in the current directory /home/user/quickstart-demo/java-demo
Watching for changes in the current directory /home/user/quickstart-demo

Keyboard Commands:
[Ctrl+c] - Exit and delete resources from the cluster
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ $ odo dev

↪ Dev mode
Status:
Watching for changes in the current directory /home/user/quickstart-demo/nodejs-demo
Watching for changes in the current directory /home/user/quickstart-demo

Keyboard Commands:
[Ctrl+c] - Exit and delete resources from the cluster
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ var _ = Describe("User guides: Quickstart test", func() {
session.Stop()
session.WaitEnd()
args := []string{"dev"}
got := strings.ReplaceAll(string(out), commonVar.Context, "/home/user/quickstart-demo/nodejs-demo")
got := strings.ReplaceAll(string(out), commonVar.Context, "/home/user/quickstart-demo")
got = helper.ReplaceAllForwardedPorts(got, cmdEndpointsMap, map[string]string{"3000": "127.0.0.1:40001", "5858": "127.0.0.1:40002"})
got = strings.ReplaceAll(got, commonVar.Project, namespace)
got = fmt.Sprintf(outputStringFormat, strings.Join(args, " "), helper.StripSpinner(got))
Expand Down Expand Up @@ -142,7 +142,7 @@ var _ = Describe("User guides: Quickstart test", func() {
session.Stop()
session.WaitEnd()
args := []string{"dev"}
got := strings.ReplaceAll(string(out), commonVar.Context, "/home/user/quickstart-demo/go-demo")
got := strings.ReplaceAll(string(out), commonVar.Context, "/home/user/quickstart-demo")
got = helper.ReplaceAllForwardedPorts(got, cmdEndpointsMap, map[string]string{"8080": "127.0.0.1:40001"})
got = strings.ReplaceAll(got, commonVar.Project, namespace)
got = fmt.Sprintf(outputStringFormat, strings.Join(args, " "), helper.StripSpinner(got))
Expand Down Expand Up @@ -198,7 +198,7 @@ var _ = Describe("User guides: Quickstart test", func() {
session.Stop()
session.WaitEnd()
args := []string{"dev"}
got := strings.ReplaceAll(string(out), commonVar.Context, "/home/user/quickstart-demo/dotnet-demo")
got := strings.ReplaceAll(string(out), commonVar.Context, "/home/user/quickstart-demo")
got = helper.ReplaceAllForwardedPorts(got, cmdEndpointsMap, map[string]string{"8080": "127.0.0.1:40001"})
got = strings.ReplaceAll(got, commonVar.Project, namespace)
got = fmt.Sprintf(outputStringFormat, strings.Join(args, " "), helper.StripSpinner(got))
Expand Down Expand Up @@ -246,7 +246,7 @@ var _ = Describe("User guides: Quickstart test", func() {
session.Stop()
session.WaitEnd()
args := []string{"dev"}
got := strings.ReplaceAll(string(out), commonVar.Context, "/home/user/quickstart-demo/java-demo")
got := strings.ReplaceAll(string(out), commonVar.Context, "/home/user/quickstart-demo")
got = helper.ReplaceAllForwardedPorts(got, cmdEndpointsMap, map[string]string{"8080": "127.0.0.1:40001", "5858": "127.0.0.1:40002"})
got = strings.ReplaceAll(got, commonVar.Project, namespace)
got = fmt.Sprintf(outputStringFormat, strings.Join(args, " "), helper.StripSpinner(got))
Expand Down

0 comments on commit c0c2765

Please sign in to comment.