Skip to content

Prevent commented out tests #84

Open
@sindresorhus

Description

@sindresorhus

We should recommend using test.skip() instead.

This:

// test('foo', => {
//  t.pass();
// });

Should instead be:

test.skip('foo', => {
    t.pass();
});

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions