We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f6db8a commit 59ed5b6Copy full SHA for 59ed5b6
tests/Browser/PluginSettingsTest.php
@@ -19,11 +19,11 @@
19
20
it('adds a script by default', function () {
21
$homePage = visit('http://localhost:8100');
22
- expect($homePage->content())->toContain(SA_DEFAULT_SCRIPT);
+ expect($homePage->content())->toContain(SA_DEFAULT_SCRIPT)->dump();
23
});
24
25
it('adds a comment when an authenticated user visits', function () {
26
$homePage = asAdmin()->navigate('http://localhost:8100');
27
- expect($homePage->content())->toContain(SA_ADMIN_NOTICE);
+ expect($homePage->content())->toContain(SA_ADMIN_NOTICE)->dump();
28
$homePage->assertNoConsoleLogs();
29
0 commit comments