Fix forceId in tests
This commit is contained in:
parent
57ca624979
commit
19618209c8
|
@ -884,10 +884,11 @@ describe('relations - integration', function() {
|
|||
plural: 'todo-lists',
|
||||
}
|
||||
);
|
||||
var todoItem = app.model(
|
||||
'todoItem',
|
||||
{ properties: { content: 'string' }, dataSource: 'db' }
|
||||
);
|
||||
var todoItem = app.model('todoItem', {
|
||||
properties: { content: 'string' },
|
||||
forceId: false,
|
||||
dataSource: 'db',
|
||||
});
|
||||
todoList.embedsMany(todoItem, { as: 'items' });
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in New Issue