fix exploding unit test

This commit is contained in:
Jake McDermott
2018-11-10 23:09:04 -05:00
parent 38fbcf8ee6
commit 38f43c147a

View File

@@ -142,14 +142,15 @@ describe('Controller: WorkflowAdd', () => {
expect(TemplatesService.createWorkflowJobTemplate).toHaveBeenCalledWith({
name: "Test Workflow",
description: "This is a test description",
labels: undefined,
organization: undefined,
inventory: undefined,
labels: undefined,
variables: undefined,
extra_vars: undefined,
allow_simultaneous: undefined
allow_simultaneous: undefined,
ask_inventory_on_launch: false,
extra_vars: undefined
});
});
});
describe('scope.formCancel()', () => {