Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

XX16 and VSNX combined module implementation #816

Merged
merged 16 commits into from
Sep 5, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
VSN modules added to tests
  • Loading branch information
Greg-Orca committed Sep 4, 2024
commit 9380792ad31723cfdce67a50444a456501796e2e
4 changes: 3 additions & 1 deletion playwright-tests/pages/connectModulePage.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ export class ConnectModulePage {
EN16: page.getByTestId("EN16"),
PBF4: page.getByTestId("PBF4"),
PO16: page.getByTestId("PO16"),
VSN0: page.getByTestId("VSN0"),
VSN1: page.getByTestId("VSN1"),
VSN1R: page.getByTestId("VSN1R"),
VSN2: page.getByTestId("VSN2"),
};
}

Expand Down
6 changes: 3 additions & 3 deletions playwright-tests/tests/actionsOperation.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ test.describe("Action Block Operations", () => {
configPage = new ConfigPage(page);
await page.goto(PAGE_PATH);
await connectModulePage.openVirtualModules();
await connectModulePage.addModule("VSN0");
await connectModulePage.addModule("VSN1");
});
test("Copy and Paste", async ({ page }) => {
const expectedComment = "action operation";
Expand Down Expand Up @@ -74,7 +74,7 @@ test.describe("Element Actions", () => {
configPage = new ConfigPage(page);
await page.goto(PAGE_PATH);
await connectModulePage.openVirtualModules();
await connectModulePage.addModule("VSN0");
await connectModulePage.addModule("VSN1");
});

test("Copy and Overwrite", async () => {
Expand Down Expand Up @@ -234,7 +234,7 @@ test.describe("Issues", () => {
configPage = new ConfigPage(page);
await page.goto(PAGE_PATH);
await connectModulePage.openVirtualModules();
await connectModulePage.addModule("VSN0");
await connectModulePage.addModule("PO16");
});

// https://github.com/intechstudio/grid-editor/issues/751
Expand Down
Loading