Skip to content

Commit

Permalink
Add test for action plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
shatakshiiii committed Jan 30, 2025
1 parent d58a9e3 commit 49aa6d3
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion test/ui-test/contentCreatorUiTest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -249,12 +249,20 @@ describe("Test collection plugins scaffolding", () => {
}
}

it("Check add-plugin webview elements", async () => {
it("Check add-plugin webview elements for lookup plugin", async () => {
await testWebViewElements(
"Ansible: Add a Plugin",
"Add Plugin",
"test_plugin_name",
"lookup",
);
});
it("Check add-plugin webview elements for action plugin", async () => {
await testWebViewElements(
"Ansible: Add a Plugin",
"Add Plugin",
"test_plugin_name",
"action",
);
});
});

0 comments on commit 49aa6d3

Please sign in to comment.