Skip to content

Commit 0d9abee

Browse files
committed
feat: write an example test for the admin page of the plugin
1 parent 672cab7 commit 0d9abee

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

admin/tests/example.cy.jsx

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
// <reference types="cypress" />
2+
3+
describe('Config Sync', () => {
4+
it('Check that admin page renders correctly', () => {
5+
cy.login();
6+
cy.navigateToAdminPage();
7+
8+
cy.contains('Welcome to Boilerplate')
9+
});
10+
});

0 commit comments

Comments
 (0)