文件操作 - navModel.test.ts
返回文件管理
返回主菜单
删除本文件
文件: /usr/share/grafana/public/app/core/reducers/navModel.test.ts
编辑文件内容
import { reducerTester } from '../../../test/core/redux/reducerTester'; import { initialState, navIndexReducer, updateNavIndex } from './navModel'; import { NavIndex } from '@grafana/data'; describe('applicationReducer', () => { describe('when updateNavIndex is dispatched', () => { it('then state should be correct', () => { reducerTester<NavIndex>() .givenReducer(navIndexReducer, { ...initialState }) .whenActionIsDispatched( updateNavIndex({ id: 'parent', text: 'Some Text', children: [ { id: 'child', text: 'Child', }, ], }) ) .thenStateShouldEqual({ ...initialState, child: { id: 'child', text: 'Child', parentItem: { id: 'parent', text: 'Some Text', children: [ { id: 'child', text: 'Child', }, ], }, }, }); }); }); });
修改文件时间
将文件时间修改为当前时间的前一年
删除文件