Files
cypress/npm/eslint-plugin-dev/test/fixtures/skip-comment-pass.js
T

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', ()=>{
})