Looking at the jest doc (https://facebook.github.io/jest/docs/en/expect.html#expectobjectcontainingobject). It seems you can do something like this:
expect(api.submitForm).toBeCalledWith(
expect.objectContaining({
foo : 'foo',
bar: 'bar'
}),
);