1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-08-07 23:03:00 +03:00

Fixed tests to align with recent changes, Updated php deps

This commit is contained in:
Dan Brown
2022-11-23 12:07:46 +00:00
parent e20c944350
commit 40a1377c0b
3 changed files with 237 additions and 237 deletions

View File

@@ -330,7 +330,7 @@ abstract class TestCase extends BaseTestCase
protected function assertNotificationContains(\Illuminate\Testing\TestResponse $resp, string $text)
{
return $this->withHtml($resp)->assertElementContains('[notification]', $text);
return $this->withHtml($resp)->assertElementContains('.notification[role="alert"]', $text);
}
/**