@@ -10,7 +10,7 @@ describe('QueryResultViewer tab persistence integration', () => {
1010 } ,
1111 } ;
1212
13- it ( 'should save and retrieve tab selection for explain queries' , ( ) => {
13+ test ( 'should save and retrieve tab selection for explain queries' , ( ) => {
1414 // Test that we can set and get the tab preference
1515 let state = queryReducer ( initialState , setResultTab ( { queryType : 'explain' , tabId : 'json' } ) ) ;
1616
@@ -26,7 +26,7 @@ describe('QueryResultViewer tab persistence integration', () => {
2626 } ) ;
2727 } ) ;
2828
29- it ( 'should save and retrieve tab selection for execute queries' , ( ) => {
29+ test ( 'should save and retrieve tab selection for execute queries' , ( ) => {
3030 const state = queryReducer (
3131 initialState ,
3232 setResultTab ( { queryType : 'execute' , tabId : 'stats' } ) ,
@@ -37,7 +37,7 @@ describe('QueryResultViewer tab persistence integration', () => {
3737 } ) ;
3838 } ) ;
3939
40- it ( 'should maintain separate preferences for different query types' , ( ) => {
40+ test ( 'should maintain separate preferences for different query types' , ( ) => {
4141 let state = initialState ;
4242
4343 // Set explain tab
@@ -61,7 +61,7 @@ describe('QueryResultViewer tab persistence integration', () => {
6161 } ) ;
6262 } ) ;
6363
64- it ( 'should handle multiple updates to the same query type' , ( ) => {
64+ test ( 'should handle multiple updates to the same query type' , ( ) => {
6565 let state = initialState ;
6666
6767 // Set initial value
0 commit comments