From 1e9b50bec589edbb46e8e1948f69bb6d956e8f60 Mon Sep 17 00:00:00 2001 From: "Alecio L. Medeiros" Date: Mon, 11 Sep 2023 16:16:57 -0300 Subject: [PATCH] Finally config CI/CD --- .../integration/Projeto_WEB/Desenvolvedor.js | 19 --------------- cypress/integration/Projeto_WEB/Livros.js | 23 ------------------- 2 files changed, 42 deletions(-) delete mode 100644 cypress/integration/Projeto_WEB/Desenvolvedor.js delete mode 100644 cypress/integration/Projeto_WEB/Livros.js diff --git a/cypress/integration/Projeto_WEB/Desenvolvedor.js b/cypress/integration/Projeto_WEB/Desenvolvedor.js deleted file mode 100644 index d81f95d..0000000 --- a/cypress/integration/Projeto_WEB/Desenvolvedor.js +++ /dev/null @@ -1,19 +0,0 @@ -describe('Página de Desenvolvedor', () => { - beforeEach(() => { - cy.visit('http://localhost:3000'); - cy.timeout(6000) - cy.get('.nav-links li:nth-child(4) a').click(); - }); - - it('Deve exibir o título "DESENVOLVEDOR"', () => { - cy.timeout(6000) - cy.get('h1').should('have.text', 'DESENVOLVEDOR'); - }); - - it('Deve exibir as informações do desenvolvedor corretamente', () => { - cy.timeout(6000) - const expectedText = '\n Alecio Leandro de Medeiros Ocupação: Estudante de Engenharia de Software Empresa: \nRoche La Hoffman Ferramentas: JavaScript, Cypress, Selenium, Robot, Appium, Node, Template EJS, Icones AJAX, CSS. \n '; - cy.get('.container').should('contain.text', expectedText); - }); - - }); \ No newline at end of file diff --git a/cypress/integration/Projeto_WEB/Livros.js b/cypress/integration/Projeto_WEB/Livros.js deleted file mode 100644 index 5cfde04..0000000 --- a/cypress/integration/Projeto_WEB/Livros.js +++ /dev/null @@ -1,23 +0,0 @@ -describe('Página de Livros', () => { - before(() => { - cy.visit('http://localhost:3000'); - cy.get('#email').type('usuario@example.com'); - cy.get('#senha').type('senha123'); - cy.get('button[type="submit"]').click(); - cy.get('a[href="/livros"]').click(); - }); - - it('Ordenar livros por autor de forma ascendente', () => { - cy.timeout(6000) - cy.get('#order-author').select('A-Z') - }); - - it('Buscar livros por título', () => { - cy.timeout(6000) - cy.get('#search-input').type('Livro 1'); - cy.get('#search-button').click(); - cy.get('#livros-lista li').should('have.length', 6); - cy.get('#livros-lista li:nth-child(1) p:nth-child(2)').contains('Título:'); - }); - -}); \ No newline at end of file