Files
dbgate/e2e-tests/cypress/e2e/cloud.cy.js
SPRINX0\prochazka d945e0426d SYNC: try to fix test
2025-06-24 10:29:47 +00:00

37 lines
1.1 KiB
JavaScript

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.themeshot('private-cloud-login');
// cy.contains('Testing Connections').rightclick();
// cy.contains('Administrate access').click();
// cy.contains('User email');
// cy.themeshot('administer-shared-folder');
});
});