29
0
mirror of https://github.com/joomla/joomla-cms.git synced 2024-06-17 17:44:57 +00:00

silly lint

This commit is contained in:
alikon 2024-05-23 22:05:55 +02:00
parent 89d6de2fbc
commit d9c41dd02e

View File

@ -1,22 +1,22 @@
describe('Test in backend that the installed languages', () => {
beforeEach(() => {
cy.doAdministratorLogin();
cy.visit('/administrator/index.php?option=com_languages&view=installed');
});
beforeEach(() => {
cy.doAdministratorLogin();
cy.visit('/administrator/index.php?option=com_languages&view=installed');
});
it('has a title', () => {
cy.get('h1.page-title').should('contain.text', 'Languages');
});
it('has a title', () => {
cy.get('h1.page-title').should('contain.text', 'Languages');
});
it('has English Language', () => {
cy.get('tr.row0').should('contain.text', 'English');
});
it('has English Language', () => {
cy.get('tr.row0').should('contain.text', 'English');
});
it('has a Language as default', () => {
cy.get('span.icon-color-featured').should('exist');
});
it('has a Language as default', () => {
cy.get('span.icon-color-featured').should('exist');
});
it('has install languages link', () => {
cy.contains(' Install Languages ');
});
it('has install languages link', () => {
cy.contains(' Install Languages ');
});
});