File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -50,22 +50,19 @@ describe('Smoke', () => {
5050 // on it. The first three `it`s above already cover "harness
5151 // attaches + window is mapped + DOM rendered" which is what smoke
5252 // is for.
53- it . skip (
54- '(SKIPPED — see above) reaches a logged-in route after auth + onboarding' ,
55- async ( ) => {
56- await waitForAppReady ( 10_000 ) ;
57- let hash = '' ;
58- await browser . waitUntil (
59- async ( ) => {
60- hash = ( await browser . execute ( ( ) => window . location . hash ) ) as string ;
61- return / ^ # \/ ( h o m e | o n b o a r d i n g ) / . test ( hash ) ;
62- } ,
63- { timeout : 15_000 , timeoutMsg : 'hash never settled to #/home or #/onboarding' }
64- ) ;
65- if ( hash . startsWith ( '#/home' ) ) {
66- const homeText = await waitForHomePage ( 15_000 ) ;
67- expect ( homeText ) . toBeTruthy ( ) ;
68- }
53+ it . skip ( '(SKIPPED — see above) reaches a logged-in route after auth + onboarding' , async ( ) => {
54+ await waitForAppReady ( 10_000 ) ;
55+ let hash = '' ;
56+ await browser . waitUntil (
57+ async ( ) => {
58+ hash = ( await browser . execute ( ( ) => window . location . hash ) ) as string ;
59+ return / ^ # \/ ( h o m e | o n b o a r d i n g ) / . test ( hash ) ;
60+ } ,
61+ { timeout : 15_000 , timeoutMsg : 'hash never settled to #/home or #/onboarding' }
62+ ) ;
63+ if ( hash . startsWith ( '#/home' ) ) {
64+ const homeText = await waitForHomePage ( 15_000 ) ;
65+ expect ( homeText ) . toBeTruthy ( ) ;
6966 }
70- ) ;
67+ } ) ;
7168} ) ;
You can’t perform that action at this time.
0 commit comments