connor4312 / nodejs-testing

VS Code integration for node:test native tests
MIT License
43 stars 6 forks source link

Using backticks for `describe` or `it` causes test to not show up #17

Closed NoelAbrahams closed 10 months ago

NoelAbrahams commented 10 months ago

Simple repro:

a) Test bar does not show up.


describe('foo', () => {

 it(`bar`, () => {

   // Assert

  });

});

b) foo does not show up


describe(`foo`, () => {

 it('bar', () => {

   // Assert

  });

});
connor4312 commented 10 months ago

Released in 1.3.1

NoelAbrahams commented 10 months ago

Works now. Thanks.