Skip to content

Commit

Permalink
Rename directories to not contain any spaces.
Browse files Browse the repository at this point in the history
  • Loading branch information
tecimovic committed Feb 11, 2022
1 parent e3f895d commit b076647
Show file tree
Hide file tree
Showing 8 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ describe('Testing enabled attributes amount', () => {
cy.get('.router-link-active')
.contains('Back')
.click()
.then(() => { })
.then(() => {})
cy.get(':nth-child(7) > .text-right').then(($div2) => {
const num2 = parseFloat($div2.text())
expect(num2).to.eq(17)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ describe('Testing enabled attributes amount', () => {
cy.get('.q-page-container > div').children().should('contain', 'General')
cy.get('div').contains('General').click()
cy.get('div').children().contains('Not Enabled').first().click()
cy.get('.q-virtual-scroll__content > :nth-child(3)').contains('Server').click()
cy.get('.q-virtual-scroll__content > :nth-child(3)')
.contains('Server')
.click()
cy.wait(1000)
cy.get(':nth-child(6) > .text-right').then(($div2) => {
const num2 = parseFloat($div2.text())
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ Cypress.on('uncaught:exception', (err, runnable) => {
return false
})
describe('Check preview buttton', () => {

it('adding a new endpoint', () => {
cy.visit('http://localhost:8080/?restPort=9070#/')
cy.get('button').contains('Add New Endpoint').click()
Expand Down

0 comments on commit b076647

Please sign in to comment.