We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c7cbc43 commit 74dd778Copy full SHA for 74dd778
1 file changed
eform-client/cypress/e2e/plugins/time-planning-pn/b/activate-plugin.spec.cy.ts
@@ -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