Runner should check pending not only for test, but also in test ancestors. ``` js module.exports = { name: 'suite', pending: true, test: [ { name: 'test', test: function(){ // should not run } } ] } ```