Skip to content

Commit

Permalink
chore: Fix cypress tests
Browse files Browse the repository at this point in the history
  • Loading branch information
on3iro committed Jan 22, 2025
1 parent 3670733 commit 6810da0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cypress/e2e/Expeditions/creationAndRunThrough.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ describe('Expedition creation and run through', () => {

// Supply
cy.get('[data-test="supply"]').click({ force: true })
cy.get('p').contains('Bloodstone Jewel').should('be.visible')
cy.get('p').contains('Volcanic Glass').should('be.visible')
cy.get('p').contains('Scoria Slag').should('be.visible')
cy.get('p').contains('Oblivium Resin').should('be.visible')
cy.get('p').contains('Transmogrifier').should('be.visible')
Expand Down
4 changes: 2 additions & 2 deletions cypress/e2e/Expeditions/seeds.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ describe('seeds', () => {
cy.get('[data-test="YES"]').click()
})

it('should procude completely different results when seed is changed', () => {
it('should produce completely different results when seed is changed', () => {
cy.visit('expeditions').wait(1000)
cy.get('[data-test="Test: Base Expedition"]')
.get('[data-test=btn-copy]')
Expand All @@ -149,7 +149,7 @@ describe('seeds', () => {
cy.get('[data-test="btn-start-battle"]').click()

cy.get('[data-test="btn-battle-won"]').click()
cy.get('p').contains('Voidium Spike').click()
cy.get('p').contains('Muted Lacosite').click()
cy.get('p').contains('Caged Fire').scrollIntoView().click()
cy.get('p').contains('Jagged Lightning').click()

Expand Down

0 comments on commit 6810da0

Please sign in to comment.