File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed
packages/framework/tests/Unit Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -68,6 +68,7 @@ public function testPassingRouteKeyToConstructorUsesRouteInstance()
6868
6969 public function testPassingUrlToConstructorUsesExternalRoute ()
7070 {
71+ $ this ->markTestSkipped ('Todo: Reimplement this test for https://github.com/hydephp/develop/pull/1636 ' );
7172 $ item = new NavigationItem ('https://example.com ' , 'Home ' );
7273 $ this ->assertInstanceOf (ExternalRoute::class, $ item ->getRoute ());
7374 $ this ->assertEquals (new ExternalRoute ('https://example.com ' ), $ item ->getRoute ());
@@ -76,6 +77,7 @@ public function testPassingUrlToConstructorUsesExternalRoute()
7677
7778 public function testPassingUnknownRouteKeyToConstructorUsesExternalRoute ()
7879 {
80+ $ this ->markTestSkipped ('Todo: Reimplement this test for https://github.com/hydephp/develop/pull/1636 ' );
7981 $ item = new NavigationItem ('foo ' , 'Home ' );
8082 $ this ->assertInstanceOf (ExternalRoute::class, $ item ->getRoute ());
8183 $ this ->assertEquals (new ExternalRoute ('foo ' ), $ item ->getRoute ());
You can’t perform that action at this time.
0 commit comments