Skip to content

Commit b463b21

Browse files
committed
fix: changed ports and added ci dev variables
1 parent 39d52cf commit b463b21

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

demo/robot.toml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ BROWSER = "firefox"
1515
[profiles.chromium.variables]
1616
BROWSER = "chromium"
1717

18-
[profiles.dev-env.extend-variables]
18+
[profiles.test-env.extend-variables]
1919
PORT = "3000"
2020

21-
[profiles.test-env.extend-variables]
21+
[profiles.dev-env.extend-variables]
2222
PORT = "3001"
2323

2424
[profiles.headless.extend-variables]
@@ -54,7 +54,7 @@ inherits = ["chromium", "headfull"]
5454

5555
[profiles.regression]
5656
description = "headfull regression tests"
57-
inherits = ["dev-env", "headfull"]
57+
inherits = ["test-env", "headfull"]
5858
includes = ["regression"]
5959

6060
[profiles.test]
@@ -81,6 +81,12 @@ description = "ci run on dev env"
8181
enabled = { if = 'environ.get("CI") == "true"' }
8282
inherits = ["firefox", "dev-env", "headless"]
8383

84+
[profiles.ci-dev.variables]
85+
PORT = "3001"
86+
APP_TITLE = "Development: Todo App"
87+
APP_HEADER = "Development Environment"
88+
APP_COLOR = "bg-blue-400"
89+
8490
[profiles.ci-no-regression]
8591
description = "ci run on test env"
8692
hidden = { if = 'environ.get("CI") != "true"' }

0 commit comments

Comments
 (0)