Skip to content

Commit 494bb25

Browse files
committed
test: add smoke test for login support page
1 parent 12eabb8 commit 494bb25

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
/* eslint-disable cypress/no-unnecessary-waiting */
2+
describe("check login support page [smoke]", () => {
3+
beforeEach(() => {
4+
cy.visit("/support/login");
5+
cy.wait(3000);
6+
});
7+
it("loads properly", () => {
8+
cy.contains("h1", "Having trouble logging in to Business.NJ.gov?").should("exist");
9+
});
10+
});

0 commit comments

Comments
 (0)