Skip to content

Commit 387740f

Browse files
committed
fix: tests
1 parent ae2d5c2 commit 387740f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/store/reducers/query/__test__/tabPersistence.test.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)