@@ -20,7 +20,7 @@ describe('Before Tutorial is entered', () => {
2020 expect ( screen . getByText ( 'Tutorial' ) ) . toBeInTheDocument ( ) ;
2121 } ) ;
2222
23- xtest ( 'User clicking tutorial button while on map tab starts map tutorial ' , ( ) => {
23+ test ( 'User clicking tutorial button while on map tab starts map tutorial ' , ( ) => {
2424 props . currentTabInApp = 'map' ;
2525 render ( < Tutorial { ...props } /> ) ;
2626 fireEvent . click ( screen . getByRole ( 'button' ) ) ;
@@ -29,28 +29,28 @@ describe('Before Tutorial is entered', () => {
2929 ) . toBeInTheDocument ( ) ;
3030 } ) ;
3131
32- xtest ( 'User clicking tutorial button while on performance tab starts performance tutorial ' , ( ) => {
32+ test ( 'User clicking tutorial button while on performance tab starts performance tutorial ' , ( ) => {
3333 props . currentTabInApp = 'performance' ;
3434 render ( < Tutorial { ...props } /> ) ;
3535 fireEvent . click ( screen . getByRole ( 'button' ) ) ;
3636 expect ( screen . getByText ( 'Performance Tab' ) ) . toBeInTheDocument ( ) ;
3737 } ) ;
3838
39- xtest ( 'User clicking tutorial button while on history tab starts history tutorial ' , ( ) => {
39+ test ( 'User clicking tutorial button while on history tab starts history tutorial ' , ( ) => {
4040 props . currentTabInApp = 'history' ;
4141 render ( < Tutorial { ...props } /> ) ;
4242 fireEvent . click ( screen . getByRole ( 'button' ) ) ;
4343 expect ( screen . getByText ( 'History Tab' ) ) . toBeInTheDocument ( ) ;
4444 } ) ;
4545
46- xtest ( 'User clicking tutorial button while on web metrics tab starts web metrics tutorial ' , ( ) => {
46+ test ( 'User clicking tutorial button while on web metrics tab starts web metrics tutorial ' , ( ) => {
4747 props . currentTabInApp = 'webmetrics' ;
4848 render ( < Tutorial { ...props } /> ) ;
4949 fireEvent . click ( screen . getByRole ( 'button' ) ) ;
5050 expect ( screen . getByText ( 'Webmetrics Tab' ) ) . toBeInTheDocument ( ) ;
5151 } ) ;
5252
53- xtest ( 'User clicking tutorial button while on tree tab starts tree tutorial ' , ( ) => {
53+ test ( 'User clicking tutorial button while on tree tab starts tree tutorial ' , ( ) => {
5454 props . currentTabInApp = 'tree' ;
5555 render ( < Tutorial { ...props } /> ) ;
5656 fireEvent . click ( screen . getByRole ( 'button' ) ) ;
0 commit comments