Skip to content

Commit

Permalink
feat(add-e2e-tests): Initial Submissions (#813)
Browse files Browse the repository at this point in the history
* Initial Submissions

added files for Initial submissions

* fix lint errors

---------

Co-authored-by: 13bfrancis <[email protected]>
  • Loading branch information
pboggarapu and 13bfrancis authored Oct 22, 2024
1 parent 9c0edc8 commit c61c209
Show file tree
Hide file tree
Showing 14 changed files with 98 additions and 0 deletions.
7 changes: 7 additions & 0 deletions test/e2e/tests/home/appendixKamendment.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { test } from "@playwright/test";

test.describe.skip("Form Submission", async () => {
// comment this out until we need it
// test.beforeAll();
test("Create and submit an Appendix K Amendment Waiver", () => {});
});
7 changes: 7 additions & 0 deletions test/e2e/tests/home/capitatedamendwaiver.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { test } from "@playwright/test";

test.describe.skip("Form Submission", async () => {
// comment this out until we need it
// test.beforeAll();
test("Create and submit a Capitated Amendment Waiver", () => {});
});
7 changes: 7 additions & 0 deletions test/e2e/tests/home/capitatedinitialwaiver.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { test } from "@playwright/test";

test.describe.skip("Form Submission", async () => {
// comment this out until we need it
// test.beforeAll();
test("Create and submit a Capitated Initial Waiver", () => {});
});
7 changes: 7 additions & 0 deletions test/e2e/tests/home/capitatedrenewalwaiver.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { test } from "@playwright/test";

test.describe.skip("Form Submission", async () => {
// comment this out until we need it
// test.beforeAll();
test("Create and submit a Capitated Renewal Waiver", () => {});
});
7 changes: 7 additions & 0 deletions test/e2e/tests/home/chipspa.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { test } from "@playwright/test";

test.describe.skip("Form Submission", async () => {
// comment this out until we need it
// test.beforeAll();
test("Create and submit a CHIP SPA", () => {});
});
7 changes: 7 additions & 0 deletions test/e2e/tests/home/contractingamendwaiver.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { test } from "@playwright/test";

test.describe.skip("Form Submission", async () => {
// comment this out until we need it
// test.beforeAll();
test("Create and submit a Contracting Amendment Waiver", () => {});
});
7 changes: 7 additions & 0 deletions test/e2e/tests/home/contractinginitialwaiver.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { test } from "@playwright/test";

test.describe.skip("Form Submission", async () => {
// comment this out until we need it
// test.beforeAll();
test("Create and submit a Contracting Initial Waiver", () => {});
});
7 changes: 7 additions & 0 deletions test/e2e/tests/home/contractingrenewalwaiver.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { test } from "@playwright/test";

test.describe.skip("Form Submission", async () => {
// comment this out until we need it
// test.beforeAll();
test("Create and submit a Contracting Renewal Waiver", () => {});
});
7 changes: 7 additions & 0 deletions test/e2e/tests/home/exportfeature.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { test } from "@playwright/test";

test.describe.skip("Form Submission", async () => {
// comment this out until we need it
// test.beforeAll();
test("Verify the export feature", () => {});
});
7 changes: 7 additions & 0 deletions test/e2e/tests/home/filters.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { test } from "@playwright/test";

test.describe.skip("Form Submission", async () => {
// comment this out until we need it
// test.beforeAll();
test("Verify records displayed on the Dashboard based on the filter selection by clicking the Filters button", () => {});
});
7 changes: 7 additions & 0 deletions test/e2e/tests/home/medicaidspa.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { test } from "@playwright/test";

test.describe.skip("Form Submission", async () => {
// comment this out until we need it
// test.beforeAll();
test("Create and submit a Medicaid SPA", () => {});
});
7 changes: 7 additions & 0 deletions test/e2e/tests/home/packagedetailspage.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { test } from "@playwright/test";

test.describe.skip("Form Submission", async () => {
// comment this out until we need it
// test.beforeAll();
test("Verify that the given details displayed on the package details page for any form type", () => {});
});
7 changes: 7 additions & 0 deletions test/e2e/tests/home/tempextension.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { test } from "@playwright/test";

test.describe.skip("Form Submission", async () => {
// comment this out until we need it
// test.beforeAll();
test("Create and submit a Temporary Extension Waiver", () => {});
});
7 changes: 7 additions & 0 deletions test/e2e/tests/home/userprofile.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { test } from "@playwright/test";

test.describe.skip("Form Submission", async () => {
// comment this out until we need it
// test.beforeAll();
test("Click on user account button and verify the user details.", () => {});
});

0 comments on commit c61c209

Please sign in to comment.