1
0
mirror of https://github.com/ansible/awx.git synced 2024-11-02 01:21:21 +03:00

fix exploding unit test

This commit is contained in:
Jake McDermott 2018-11-10 23:09:04 -05:00
parent 38fbcf8ee6
commit 38f43c147a
No known key found for this signature in database
GPG Key ID: 9A6F084352C3A0B7

View File

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