Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/main/resources/application-dev.yaml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
server:
port: 8080
port: 8081
2 changes: 1 addition & 1 deletion src/main/resources/application-prod.yaml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
server:
port: 9001
port: 9012
3 changes: 3 additions & 0 deletions src/main/resources/application.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
server.port=8081
spring.application.name=calculator-app
logging.level.org.springframework.web=DEBUG
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,13 @@ static void setUpFireFoxDriver() {
}

@BeforeEach

void setUpWebDriver() {
webDriver = new FirefoxDriver();
baseUrl = "http://localhost:" + port + "/calculator";

baseUrl = "http://172.20.10.4:" + port + "/calculator";
}


@AfterEach
void quitWebDriver() {
if (webDriver != null) {
Expand Down