You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First off, thanks for this awesome adapter, it makes working with Pest inside of Neovim a breeze!
I'm facing an issue when the test is wrapped with a describe block, the icons in the gutter (and in the Test Summary) don't match the test result, they always show as if the test didn't pass. The test result overlay renders correctly as the output of running pest directly from the console. (please refer to the attached screenshots).
This will work as expected:
it('should work', function () {
expect(true)->toBeTrue();
});
This will show a red x in the gutter even though the test is passing.
describe('Describe Block', function () {
it('should work', function () {
expect(true)->toBeTrue();
});
});
It would be great to have the correct gutter icons when describe blocks are present in the test suite.
Thanks!
The text was updated successfully, but these errors were encountered:
Hello 👋
First off, thanks for this awesome adapter, it makes working with Pest inside of Neovim a breeze!
I'm facing an issue when the test is wrapped with a
describe
block, the icons in the gutter (and in the Test Summary) don't match the test result, they always show as if the test didn't pass. The test result overlay renders correctly as the output of runningpest
directly from the console. (please refer to the attached screenshots).This will work as expected:
This will show a red x in the gutter even though the test is passing.
It would be great to have the correct gutter icons when describe blocks are present in the test suite.
Thanks!
The text was updated successfully, but these errors were encountered: