文件操作 - annotations_srv.test.ts
返回文件管理
返回主菜单
删除本文件
文件: /usr/share/grafana/public/app/features/annotations/specs/annotations_srv.test.ts
编辑文件内容
import { AnnotationsSrv } from '../annotations_srv'; describe('AnnotationsSrv', () => { const annotationsSrv = new AnnotationsSrv(); describe('When translating the query result', () => { const annotationSource = { datasource: '-- Grafana --', enable: true, hide: false, limit: 200, name: 'test', scope: 'global', tags: ['test'], type: 'event', }; const time = 1507039543000; const annotations = [{ id: 1, panelId: 1, text: 'text', time: time }]; let translatedAnnotations: any; beforeEach(() => { translatedAnnotations = annotationsSrv.translateQueryResult(annotationSource, annotations); }); it('should set defaults', () => { expect(translatedAnnotations[0].source).toEqual(annotationSource); }); }); });
修改文件时间
将文件时间修改为当前时间的前一年
删除文件