mirror of
				https://github.com/reduxjs/redux-devtools.git
				synced 2025-11-04 09:57:26 +03:00 
			
		
		
		
	* Update Redux packages * Fix instrument build * Fix some test type errors * Fix redux-devtools build * Fix rtk-query-monitor build * Fix redux-devtools-app build * Fix redux-devtools-extension build * Fix redux-devtools-remote build * Fix extension build * slider-monitor-example * test-tab-demo * inspector-monitor-demo * rtk-query-monitor-demo * counter-example * todomvc-example * Fix lint * Fix instrument test types * Fix core tests * Fix rtk-query-monitor tests * Updates
		
			
				
	
	
		
			78 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			78 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import React from 'react';
 | 
						|
import { Provider } from 'react-redux';
 | 
						|
import { createStore, applyMiddleware, Reducer } from 'redux';
 | 
						|
import { render, screen, within } from '@testing-library/react';
 | 
						|
import App from '../src/containers/App';
 | 
						|
import { exportStateMiddleware } from '../src/middlewares/exportState';
 | 
						|
import { coreReducers } from '../src/reducers';
 | 
						|
import { DATA_TYPE_KEY } from '../src/constants/dataTypes';
 | 
						|
import { stringifyJSON } from '../src/utils/stringifyJSON';
 | 
						|
import { combineReducers } from 'redux';
 | 
						|
import { CoreStoreAction, CoreStoreState } from '../lib/types';
 | 
						|
 | 
						|
Object.defineProperty(window, 'matchMedia', {
 | 
						|
  writable: true,
 | 
						|
  value: jest.fn().mockImplementation((query) => ({
 | 
						|
    matches: false,
 | 
						|
    media: query,
 | 
						|
    onchange: null,
 | 
						|
    addListener: jest.fn(), // deprecated
 | 
						|
    removeListener: jest.fn(), // deprecated
 | 
						|
    addEventListener: jest.fn(),
 | 
						|
    removeEventListener: jest.fn(),
 | 
						|
    dispatchEvent: jest.fn(),
 | 
						|
  })),
 | 
						|
});
 | 
						|
 | 
						|
const store = createStore(
 | 
						|
  combineReducers(coreReducers) as Reducer<
 | 
						|
    CoreStoreState,
 | 
						|
    CoreStoreAction,
 | 
						|
    Partial<CoreStoreState>
 | 
						|
  >,
 | 
						|
  applyMiddleware(exportStateMiddleware),
 | 
						|
);
 | 
						|
 | 
						|
describe('App container', () => {
 | 
						|
  it("should render inspector monitor's wrapper", () => {
 | 
						|
    render(
 | 
						|
      <Provider store={store}>
 | 
						|
        <App />
 | 
						|
      </Provider>,
 | 
						|
    );
 | 
						|
    expect(screen.getByTestId('inspector')).toBeDefined();
 | 
						|
  });
 | 
						|
 | 
						|
  it('should contain an empty action list', () => {
 | 
						|
    render(
 | 
						|
      <Provider store={store}>
 | 
						|
        <App />
 | 
						|
      </Provider>,
 | 
						|
    );
 | 
						|
    const actionList = screen.getByTestId('actionList');
 | 
						|
    expect(within(actionList).queryByRole('button')).not.toBeInTheDocument();
 | 
						|
  });
 | 
						|
});
 | 
						|
 | 
						|
describe('stringifyJSON', () => {
 | 
						|
  it('should not mutate the source object', () => {
 | 
						|
    const src = {
 | 
						|
      isTest: true,
 | 
						|
      [DATA_TYPE_KEY]: 'Test',
 | 
						|
    };
 | 
						|
 | 
						|
    const result = {
 | 
						|
      data: {
 | 
						|
        isTest: true,
 | 
						|
      },
 | 
						|
      __serializedType__: 'Test',
 | 
						|
    };
 | 
						|
 | 
						|
    expect(stringifyJSON(src, true)).toEqual(JSON.stringify(result));
 | 
						|
    expect(src).toEqual({
 | 
						|
      isTest: true,
 | 
						|
      [DATA_TYPE_KEY]: 'Test',
 | 
						|
    });
 | 
						|
  });
 | 
						|
});
 |