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 59ed5b6 commit cc71bd0Copy full SHA for cc71bd0
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)->dump();
+ expect($homePage->content())->dump()->toContain(SA_DEFAULT_SCRIPT);
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)->dump();
+ expect($homePage->content())->dump()->toContain(SA_ADMIN_NOTICE);
28
$homePage->assertNoConsoleLogs();
29
0 commit comments