Skip to content

Commit

Permalink
skip code coverage tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mschile committed Dec 3, 2024
1 parent 5cf6026 commit 2f81f8b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
import Calculator from './Calculator.vue'
import { mount } from '@cypress/vue'

describe('Calculator', () => {
// TODO: fix with https://github.com/cypress-io/cypress/issues/30706
describe.skip('Calculator', () => {
it('adds two numbers', () => {
cy.viewport(400, 200)
mount(Calculator)
Expand Down
3 changes: 2 additions & 1 deletion npm/vue/cypress/component/basic/code-coverage/unit.cy.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
/// <reference types="cypress" />
import { add } from './calc'

describe('Code coverage', () => {
// TODO: fix with https://github.com/cypress-io/cypress/issues/30706
describe.skip('Code coverage', () => {
it('has code coverage object', () => {
// there is an object created by Istanbul plugin
cy.wrap(window)
Expand Down

0 comments on commit 2f81f8b

Please sign in to comment.