SYNC: private cloud test

This commit is contained in:
SPRINX0\prochazka
2025-06-24 10:32:24 +02:00
committed by Diflow
parent eba16cc15d
commit c641830825
6 changed files with 42 additions and 8 deletions

View File

@@ -0,0 +1,34 @@
Cypress.on('uncaught:exception', (err, runnable) => {
// if the error message matches the one about WorkerGlobalScope importScripts
if (err.message.includes("Failed to execute 'importScripts' on 'WorkerGlobalScope'")) {
// return false to let Cypress know we intentionally want to ignore this error
return false;
}
// otherwise let Cypress throw the error
});
beforeEach(() => {
cy.visit('http://localhost:3000');
cy.viewport(1250, 900);
});
describe('Cloud tests', () => {
it('Private cloud', () => {
cy.testid('WidgetIconPanel_cloudAccount').click();
cy.origin('https://identity.dbgate.io', () => {
cy.contains('Sign in with GitHub').click();
});
cy.origin('https://github.com', () => {
cy.get('#login_field').type('dbgatetest');
cy.get('#password').type('Pwd2020Db');
cy.get('input[type="submit"]').click();
});
cy.contains('Testing Connections').rightclick();
cy.contains('Administrate access').click();
cy.contains('User email');
cy.themeshot('administer-shared-folder');
});
});