File tree 3 files changed +6
-5
lines changed
3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 378
378
});
379
379
});
380
380
381
- Route::get ('/home ' , 'HomeController@index ' )->name ('home ' );
381
+ // TODO: update to redirect to root later
382
+ Route::get ('/home ' , 'HomeController@index ' );
382
383
383
- route_redirect ('/ ' , 'home ' );
384
+ Route:: get ('/ ' , ' HomeController@index ' )-> name ( 'home ' );
384
385
385
386
if ($ GLOBALS ['cfg ' ]['osu ' ]['scores ' ]['rank_cache ' ]['local_server ' ]) {
386
387
Route::get ('rankLookup ' , 'ScoresController@userRankLookup ' );
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ public function testLogin()
27
27
->type ('password ' , 'password ' ) // User factory generates users with the password hardcoded as 'password'
28
28
->press ('Sign in ' )
29
29
->waitFor ('.user-home ' )
30
- ->assertPathIs ('/home ' )
30
+ ->assertPathIs ('/ ' )
31
31
->assertSee ('dashboard ' )
32
32
->assertSee ('account settings ' )
33
33
->assertDontSee ('Incorrect sign in ' );
@@ -50,7 +50,7 @@ public function testLogout()
50
50
->click ('.js-user-header-popup .js-logout-link ' ) // click the logout 'button'
51
51
->acceptDialog ()
52
52
->waitFor ('.landing-hero__bg-container ' )
53
- ->assertPathIs ('/home ' )
53
+ ->assertPathIs ('/ ' )
54
54
->assertVisible ('.landing-hero ' );
55
55
});
56
56
}
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ class RouteTest extends TestCase
17
17
*/
18
18
public function testHomeRoutes ()
19
19
{
20
- $ this ->assertGetRoutes (['/home ' ]);
20
+ $ this ->assertGetRoutes (['/ ' ]);
21
21
}
22
22
23
23
/**
You can’t perform that action at this time.
0 commit comments