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 1dc65f4 commit 689449eCopy full SHA for 689449e
tests/Functional/IssuesCest.php
@@ -32,4 +32,14 @@ public function keepDoctrineDbalConnection(FunctionalTester $I)
32
$user = $dbalConnection->fetchOne('SELECT id FROM user WHERE email = :email', ['email' => 'fixture@fixture.test']);
33
$I->assertNotFalse($user);
34
}
35
+
36
+ /**
37
+ * @see https://github.com/Codeception/module-symfony/pull/185
38
+ */
39
+ public function ensureFragmentsAreIgnored(FunctionalTester $I)
40
+ {
41
+ $I->amOnPage('/register#content');
42
+ $I->seeInCurrentRoute('app_register');
43
+ $I->seeCurrentRouteIs('app_register');
44
+ }
45
0 commit comments