Skip to content
This repository was archived by the owner on Jun 9, 2026. It is now read-only.
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,14 @@ void layout_Create() {
Setup.getUniqueReferenceId(),
Dataset.AU_ADDRESS);

assertThat(createLayoutResult.getError()).isNotPresent();
assertThat(createLayoutResult.getError())
.withFailMessage("Error present.\nError properties: " + createLayoutResult.getError().map(error ->
"\n Type: " + error.getType() +
"\n Title: " + error.getTitle() +
"\n Detail: " + error.getDetail()
))
.isNotPresent();

//Check if the layout was created
final GetLayoutResult result = client.getLayout(layoutName, Setup.getUniqueReferenceId());
assertThat(result.getLayout().getStatus()).isEqualTo(LayoutStatus.CREATION_IN_PROGRESS);
Expand Down
4 changes: 3 additions & 1 deletion typescript/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,6 @@ node_modules
build
.env
.vscode
*.js
*.js
!eslint.config.js
dist
Loading
Loading