mirror of
https://github.com/cypress-io/cypress.git
synced 2026-05-07 23:40:21 -05:00
26 lines
403 B
JavaScript
26 lines
403 B
JavaScript
// NOTE: im skipping this for good reason
|
|
|
|
it.skip('some test', ()=>{
|
|
|
|
})
|
|
|
|
// NOTE: im skipping this for good reason
|
|
// some other line
|
|
describe.skip('some test', ()=>{
|
|
|
|
})
|
|
|
|
/* NOTE: im skipping this for good reason */
|
|
context.skip('some test', ()=>{
|
|
|
|
})
|
|
|
|
// TODO: im skipping this for good reason
|
|
it.skip('some test', ()=>{
|
|
|
|
})
|
|
//# TODO: im skipping this for good reason
|
|
it.skip('some test', ()=>{
|
|
|
|
})
|