Преглед изворни кода

- initiation of home settings vrt

LuqmanHakim-Grune пре 4 година
родитељ
комит
7eaa7f337b

+ 48 - 0
packages/app/test/cypress/integration/6-home-setting/update-home-setting.ts

@@ -0,0 +1,48 @@
+context('Update home setting', () => {
+  const ssPrefix = 'update-home-setting-';
+
+  let connectSid: string | undefined;
+
+  before(() => {
+    // login
+    cy.fixture("user-admin.json").then(user => {
+      cy.login(user.username, user.password);
+    });
+    cy.getCookie('connect.sid').then(cookie => {
+      connectSid = cookie?.value;
+    });
+    // collapse sidebar
+    cy.collapseSidebar(true);
+  });
+
+  beforeEach(() => {
+    if (connectSid != null) {
+      cy.setCookie('connect.sid', connectSid);
+    }
+  });
+
+  it('Update User information', () => {
+
+  });
+
+  it('Update External account', () => {
+
+  });
+
+  it('Update Password setting', () => {
+
+  });
+
+  it('Update API setting', () => {
+
+  });
+
+  it('Update Editor setting', () => {
+
+  });
+
+  it('Update In-app notification setting', () => {
+
+  });
+
+});