7ute / symbols-list

An alternate symbol list sidebar for Atom.io text editor
GNU General Public License v3.0
32 stars 24 forks source link

Support for Mocha #67

Closed Torniojaws closed 4 years ago

Torniojaws commented 6 years ago

Is support for Mocha tests in the pipeline? Ie.

describe('someConcept', () => {
  describe('#someFeature', () => {
    it('does what it is supposed to', () => {
      // some tests
    });
  });

  describe('#anotherThingy', () => {
    it('just plain works', () => {
      // some tests
    });
  });
});

Which would show in the list as eg.

[ T ] someConcept
[ T ] #someFeature
[ A ] does what it is supposed to
[ T ] #anotherThingy
[ A ] just plain works

T = test A = assert

7ute commented 4 years ago

Queued for next release (added in 68b2d45886b238711560e7ae31187cfec9a5a885)