Skip to content

Commit 189aac7

Browse files
authored
test: skip "new test" studio tests (#33249)
1 parent e225753 commit 189aac7

File tree

3 files changed

+12
-6
lines changed

3 files changed

+12
-6
lines changed

packages/app/cypress/e2e/studio/studio-navigation.cy.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,8 @@ describe('Cypress Studio - Navigation and URL Management', () => {
7676
cy.location().its('hash').should('contain', 'suiteId=r2').and('contain', 'studio=').and('contain', 'sessionId=')
7777
})
7878

79-
it('updates the studio url parameters and displays the single test view after creating a new test', () => {
79+
// TODO: unskip with https://github.com/cypress-io/cypress/pull/33236
80+
it.skip('updates the studio url parameters and displays the single test view after creating a new test', () => {
8081
loadProjectAndRunSpec()
8182

8283
// open the studio panel to create a new test in the root suite

packages/app/cypress/e2e/studio/studio-new-tests.cy.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,8 @@ describe('studio functionality', () => {
160160
})
161161
})
162162

163-
it('creates a new test from an empty spec', () => {
163+
// TODO: unskip with https://github.com/cypress-io/cypress/pull/33236
164+
it.skip('creates a new test from an empty spec', () => {
164165
loadProjectAndRunSpec({ specName: 'empty.cy.js', specSelector: 'title' })
165166

166167
cy.contains('Create test with Cypress Studio').click()
@@ -206,7 +207,8 @@ it('new-test', function() {
206207
cy.findByTestId('studio-single-test-title').should('have.text', 'should be the only test to run normally')
207208
})
208209

209-
it('creates and runs new tests in studio mode when there is a .only test in the spec file', () => {
210+
// TODO: unskip with https://github.com/cypress-io/cypress/pull/33236
211+
it.skip('creates and runs new tests in studio mode when there is a .only test in the spec file', () => {
210212
loadProjectAndRunSpec({ specName: 'spec-with-only.cy.js' })
211213

212214
cy.get('.test').should('have.length', 1)

packages/app/cypress/e2e/studio/studio-ui.cy.ts

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ describe('studio functionality', () => {
3535
})
3636
})
3737

38-
it('opens studio panel to new test when clicking on studio button (from the app) next to url', () => {
38+
// TODO: unskip with https://github.com/cypress-io/cypress/pull/33236
39+
it.skip('opens studio panel to new test when clicking on studio button (from the app) next to url', () => {
3940
cy.viewport(1500, 1000)
4041
loadProjectAndRunSpec()
4142
// studio button should be visible when using cloud studio
@@ -84,7 +85,8 @@ describe('studio functionality', () => {
8485
cy.percySnapshot()
8586
})
8687

87-
it('shows test body sections correctly when studio panel is open and page is refreshed', () => {
88+
// TODO: unskip with https://github.com/cypress-io/cypress/pull/33236
89+
it.skip('shows test body sections correctly when studio panel is open and page is refreshed', () => {
8890
loadProjectAndRunSpec()
8991

9092
cy.waitForSpecToFinish()
@@ -114,7 +116,8 @@ describe('studio functionality', () => {
114116
cy.location().its('hash').should('contain', 'suiteId=r1').and('not.contain', 'testId=')
115117
})
116118

117-
it('stays in new test mode when studio panel is opened when the spec is running', () => {
119+
// TODO: unskip with https://github.com/cypress-io/cypress/pull/33236
120+
it.skip('stays in new test mode when studio panel is opened when the spec is running', () => {
118121
loadProjectAndRunSpec()
119122

120123
cy.waitForSpecToFinish()

0 commit comments

Comments
 (0)