Skip to content

Commit 74dd778

Browse files
committed
Adding activate plugin.
1 parent c7cbc43 commit 74dd778

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import loginPage from '../../../Login.page';
2+
import pluginPage from '../../../Plugin.page';
3+
4+
describe('Enable Backend Config plugin', () => {
5+
beforeEach(() => {
6+
cy.visit('http://localhost:4200');
7+
loginPage.login();
8+
pluginPage.Navbar.goToPluginsPage();
9+
});
10+
11+
it('should activate the plugin', () => {
12+
const pluginName = 'Microting Time Planning Plugin';
13+
pluginPage.enablePluginByName(pluginName);
14+
});
15+
});

0 commit comments

Comments
 (0)