basisjs/yatra

Tests should inherit `pending` from ancestors

lahmatiy opened this issue · 0 comments

Runner should check pending not only for test, but also in test ancestors.

module.exports = {
  name: 'suite',
  pending: true,
  test: [
    {
      name: 'test',
      test: function(){
        // should not run
      }
    }
  ]
}