@@ -20,7 +20,7 @@ describe('Before Tutorial is entered', () => {
20
20
expect ( screen . getByText ( 'Tutorial' ) ) . toBeInTheDocument ( ) ;
21
21
} ) ;
22
22
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 ' , ( ) => {
24
24
props . currentTabInApp = 'map' ;
25
25
render ( < Tutorial { ...props } /> ) ;
26
26
fireEvent . click ( screen . getByRole ( 'button' ) ) ;
@@ -29,28 +29,28 @@ describe('Before Tutorial is entered', () => {
29
29
) . toBeInTheDocument ( ) ;
30
30
} ) ;
31
31
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 ' , ( ) => {
33
33
props . currentTabInApp = 'performance' ;
34
34
render ( < Tutorial { ...props } /> ) ;
35
35
fireEvent . click ( screen . getByRole ( 'button' ) ) ;
36
36
expect ( screen . getByText ( 'Performance Tab' ) ) . toBeInTheDocument ( ) ;
37
37
} ) ;
38
38
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 ' , ( ) => {
40
40
props . currentTabInApp = 'history' ;
41
41
render ( < Tutorial { ...props } /> ) ;
42
42
fireEvent . click ( screen . getByRole ( 'button' ) ) ;
43
43
expect ( screen . getByText ( 'History Tab' ) ) . toBeInTheDocument ( ) ;
44
44
} ) ;
45
45
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 ' , ( ) => {
47
47
props . currentTabInApp = 'webmetrics' ;
48
48
render ( < Tutorial { ...props } /> ) ;
49
49
fireEvent . click ( screen . getByRole ( 'button' ) ) ;
50
50
expect ( screen . getByText ( 'Webmetrics Tab' ) ) . toBeInTheDocument ( ) ;
51
51
} ) ;
52
52
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 ' , ( ) => {
54
54
props . currentTabInApp = 'tree' ;
55
55
render ( < Tutorial { ...props } /> ) ;
56
56
fireEvent . click ( screen . getByRole ( 'button' ) ) ;
0 commit comments