We should recommend using `test.skip()` instead. This: ``` js // test('foo', => { // t.pass(); // }); ``` Should instead be: ``` js test.skip('foo', => { t.pass(); }); ```