Skip to content

Commit 6810da0

Browse files
committed
chore: Fix cypress tests
1 parent 3670733 commit 6810da0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

cypress/e2e/Expeditions/creationAndRunThrough.cy.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ describe('Expedition creation and run through', () => {
125125

126126
// Supply
127127
cy.get('[data-test="supply"]').click({ force: true })
128-
cy.get('p').contains('Bloodstone Jewel').should('be.visible')
128+
cy.get('p').contains('Volcanic Glass').should('be.visible')
129129
cy.get('p').contains('Scoria Slag').should('be.visible')
130130
cy.get('p').contains('Oblivium Resin').should('be.visible')
131131
cy.get('p').contains('Transmogrifier').should('be.visible')

cypress/e2e/Expeditions/seeds.cy.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ describe('seeds', () => {
133133
cy.get('[data-test="YES"]').click()
134134
})
135135

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

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

0 commit comments

Comments
 (0)