Skip to content

Commit

Permalink
Release v1.21.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalgrimaud committed Oct 25, 2024
1 parent 59602f3 commit 851c488
Show file tree
Hide file tree
Showing 41 changed files with 6,473 additions and 4,886 deletions.
583 changes: 274 additions & 309 deletions .jhipster/modules/history.json

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ npm install
## Start up

```bash
./mvnw
./mvnw
```

```bash
Expand All @@ -43,6 +43,7 @@ docker compose -f src/main/docker/postgresql.yml up -d
docker compose -f src/main/docker/keycloak.yml up -d
```


<!-- jhipster-needle-startupCommand -->

## Documentation
Expand Down
8 changes: 7 additions & 1 deletion documentation/cucumber.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,13 @@ public class SimpleSteps {

@Then("I get simple response with name {string} and age {int}")
public void shouldGetResponse(String name, int age) {
assertThatLastResponse().hasOkStatus().hasElement("$.name").withValue(name).and().hasElement("$.age").withValue(age);
assertThatLastResponse()
.hasOkStatus()
.hasElement("$.name")
.withValue(name)
.and()
.hasElement("$.age")
.withValue(age);
}
}

Expand Down
Loading

0 comments on commit 851c488

Please sign in to comment.