Skip to content

Commit 22c496b

Browse files
committed
Fix cypress
1 parent 30e73ef commit 22c496b

File tree

2 files changed

+16
-12
lines changed

2 files changed

+16
-12
lines changed

cypress/e2e/Expeditions/creationAndRunThrough.cy.ts

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ describe('Expedition creation and run through', () => {
6161
.contains('Reflective Conduit')
6262
.click()
6363
.get('p')
64-
.contains('Combustion')
64+
.contains('Psychic Eruption')
6565
.click()
6666
.get('[data-test="btn-continue"]')
6767
.click()
@@ -74,7 +74,7 @@ describe('Expedition creation and run through', () => {
7474
cy.get('[data-test="btn-battle-won"]').click()
7575
cy.get('p').contains('Energized Rubidium').click()
7676
cy.get('p').contains('Primordial Fetish').click()
77-
cy.get('p').contains('Catalyst').click()
77+
cy.get('p').contains('Char').click()
7878
cy.get('[data-test="btn-continue"]').click()
7979
})
8080

@@ -85,7 +85,7 @@ describe('Expedition creation and run through', () => {
8585
cy.get('[data-test="btn-battle-won"]').click()
8686
cy.get('p').contains('Searing Ruby').click()
8787
cy.get('p').contains('Scholars Opus').click()
88-
cy.get('p').contains('Reduce To Ash').click()
88+
cy.get('p').contains('Carbonize').click()
8989
cy.get('[data-test="btn-continue"]').click()
9090
})
9191

@@ -130,11 +130,12 @@ describe('Expedition creation and run through', () => {
130130
cy.get('p').contains('Oblivium Resin').should('be.visible')
131131
cy.get('p').contains('Transmogrifier').should('be.visible')
132132
cy.get('p').contains('Breach Extractor').should('be.visible')
133+
cy.get('p').contains('Feral Lightning').scrollIntoView()
133134
cy.get('p').contains('Feral Lightning').should('be.visible')
134-
cy.get('p').contains('Wildfire Whip').scrollIntoView()
135-
cy.get('p').contains('Wildfire Whip').should('be.visible')
135+
cy.get('p').contains('Amplify Vision').scrollIntoView()
136+
cy.get('p').contains('Amplify Vision').should('be.visible')
136137
cy.get('p').contains('Celestial Spire').should('be.visible')
137-
cy.get('p').contains('Pyromancy').should('be.visible')
138+
cy.get('p').contains('Scrying Bolt').should('be.visible')
138139

139140
// Treasures
140141
cy.get('[data-test="treasure"]').click({ force: true })
@@ -182,13 +183,16 @@ describe('Expedition creation and run through', () => {
182183
cy.get('p').contains('Vriswood Amber').should('be.visible')
183184
cy.get('p').contains('Dread Diamond').should('be.visible')
184185
cy.get('p').contains('Reflective Conduit').should('be.visible')
185-
cy.get('p').contains('Combustion').scrollIntoView().should('be.visible')
186+
cy.get('p')
187+
.contains('Psychic Eruption')
188+
.scrollIntoView()
189+
.should('be.visible')
186190
cy.get('p').contains('Energized Rubidium').should('be.visible')
187191
cy.get('p')
188192
.contains('Primordial Fetish')
189193
.scrollIntoView()
190194
.should('be.visible')
191-
cy.get('p').contains('Catalyst').should('be.visible')
195+
cy.get('p').contains('Char').should('be.visible')
192196
cy.get('p').contains('Searing Ruby').should('be.visible')
193197
cy.get('p').contains('Scholars Opus').should('be.visible')
194198
})

cypress/e2e/Expeditions/seeds.cy.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ describe('seeds', () => {
4848
cy.get('[data-test="btn-battle-won"]').click()
4949
cy.get('p').contains('Dread Diamond').click()
5050
cy.get('p').contains('Reflective Conduit').click()
51-
cy.get('p').contains('Combustion').click()
51+
cy.get('p').contains('Psychic Eruption').click()
5252
cy.get('[data-test="btn-continue"]').click()
5353

5454
cy.get('[data-test=btn-battle]').eq(1).click()
@@ -83,7 +83,7 @@ describe('seeds', () => {
8383
cy.get('[data-test="btn-battle-won"]').click()
8484
cy.get('p').contains('Dread Diamond').click()
8585
cy.get('p').contains('Reflective Conduit').click()
86-
cy.get('p').contains('Combustion').click()
86+
cy.get('p').contains('Psychic Eruption').click()
8787
cy.get('[data-test="btn-continue"]').click()
8888

8989
cy.get('[data-test=btn-battle]').eq(1).click()
@@ -116,7 +116,7 @@ describe('seeds', () => {
116116
cy.get('[data-test="btn-battle-won"]').click()
117117
cy.get('p').contains('Summonite').click()
118118
cy.get('p').contains('Conclave Scroll').click()
119-
cy.get('p').contains('Storm Vapor').click()
119+
cy.get('p').contains('Embody Flame').click()
120120

121121
cy.get('[data-test="btn-continue"]').click()
122122

@@ -151,7 +151,7 @@ describe('seeds', () => {
151151
cy.get('[data-test="btn-battle-won"]').click()
152152
cy.get('p').contains('Voidium Spike').click()
153153
cy.get('p').contains('Caged Fire').scrollIntoView().click()
154-
cy.get('p').contains('Convection Field').click()
154+
cy.get('p').contains('Jagged Lightning').click()
155155

156156
cy.get('[data-test="btn-continue"]').click()
157157

0 commit comments

Comments
 (0)