Skip to content
Merged
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
4 changes: 4 additions & 0 deletions tests/desktop/normal/regression/issue_588.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ test("Issue 588, special characters in event tree causing to tree to fail", asyn
// Add a prefix to the title.
let newJson = await response.json();

// Filter if Topological Obhect is already on the tree,
newJson = newJson.filter((x) => x.name !== "Topological Object");

// Swap the "Topological Object" with the problem one
newJson.push({
name: "Topological Object",
pin: "TO",
Expand Down
Loading