Commit f619dd57 by Marcus Efraimsson

provisioning: fix tests for save provisioned dashboard modal

parent 6bbeb723
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));
});
});
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment