beyondcode / dusk-dashboard

A beautiful dashboard for your Laravel Dusk tests
https://pociot.dev/8-introducing-laravel-dusk-dashboard
MIT License
559 stars 63 forks source link

wrong parent function call in MakesAssertions trait #40

Closed stefanullrich closed 5 years ago

stefanullrich commented 5 years ago

Probably just a typo in file src/Dusk/Concerns/MakesAssertions.php:

    /** {@inheritdoc} */
    public function assertDontSeeIn($selector, $text)
    {
        $this->actionCollector->collect(__FUNCTION__, func_get_args(), $this);

        return parent::assertDontSeeLink($selector, $text);
    }

needs to return

        return parent::assertDontSeeIn($selector, $text);

Will create a pull request.