scope-inspector icon indicating copy to clipboard operation
scope-inspector copied to clipboard

Add mocha describe/it support

Open hellboy81 opened this issue 10 years ago • 0 comments

Support for mocha's describe/it should be added:

For this code

describe('.myFunc()', function () {
  it('is a function', function() {
       // Current cursor position
      should.exist(sut.getList)
      sut.myFunc.should.be.a('function')
  })
})

should be shown

GLOBAL > myFunc > is a function

instead of

GLOBAL > anonymous function > anonymous function

hellboy81 avatar Aug 26 '15 11:08 hellboy81