mirror of
https://github.com/grafana/grafana.git
synced 2024-11-28 11:44:26 -06:00
provisioning: fix tests for save provisioned dashboard modal
This commit is contained in:
parent
6bbeb723ca
commit
f619dd579e
@ -1,5 +1,4 @@
|
||||
import { SaveProvisionedDashboardModalCtrl } from '../save_provisioned_modal';
|
||||
import { describe, it, expect } from 'test/lib/common';
|
||||
|
||||
describe('SaveProvisionedDashboardModalCtrl', () => {
|
||||
var json = {
|
||||
@ -21,8 +20,11 @@ describe('SaveProvisionedDashboardModalCtrl', () => {
|
||||
|
||||
var ctrl = new SaveProvisionedDashboardModalCtrl(mockDashboardSrv);
|
||||
|
||||
it('verify that the id have been removed', () => {
|
||||
var copy = ctrl.getJsonForClipboard();
|
||||
expect(copy).toBe(`{"title":"name"}`);
|
||||
it('should remove id from dashboard model', () => {
|
||||
expect(ctrl.dash.id).toBeUndefined();
|
||||
});
|
||||
|
||||
it('should remove id from dashboard model in clipboard json', () => {
|
||||
expect(ctrl.getJsonForClipboard()).toBe(JSON.stringify({ title: 'name' }, null, 2));
|
||||
});
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user