V13Axel / neotest-pest

Neotest adapter for Pest 2.0
MIT License
14 stars 5 forks source link

Tests with names defined in double-quoted strings not properly discovered #12

Closed V13Axel closed 1 month ago

V13Axel commented 1 month ago

Currently, despite these two tests being identical:

it('has a name defined with single quotes', function() {
    assert(true);
});

it("has a name defined with double quotes", function() {
    assert(true);
});

The first one will be detected, while the second will not. This has caused me confusion several times, and it needs fixing.

V13Axel commented 1 month ago

Resolved by 6ba782610d1f30efbeaf603e3d5cd0039ea0f902