Skip to content

Commit

Permalink
add tags to tests
Browse files Browse the repository at this point in the history
  • Loading branch information
RODO94 committed Nov 18, 2024
1 parent 7304a77 commit dbaaf2c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ test("adding an external portal", async () => {
type: TYPES.ExternalPortal,
data: {
flowId: "b",
tags: [],
},
}),
);
Expand Down Expand Up @@ -63,6 +64,7 @@ test("changing an external portal", async () => {
type: TYPES.ExternalPortal,
data: {
flowId: "a",
tags: [],
},
}),
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ describe("adding an internal portal", () => {
data: {
flowId: "", // will be removed when saving the data
text: "new internal portal",
tags: [],
},
});
});
Expand Down Expand Up @@ -117,6 +118,7 @@ test("updating an internal portal", async () => {
data: {
flowId: "", // will be removed when saving the data
text: "new val",
tags: [],
},
});
});
Expand Down

0 comments on commit dbaaf2c

Please sign in to comment.