Add test's description

This commit is contained in:
Amir Jafarian 2016-05-31 11:13:28 -04:00
parent 1f94f63bc1
commit 2b6ced06a1
1 changed files with 3 additions and 0 deletions

View File

@ -1135,6 +1135,9 @@ module.exports = function(dataSource, should, connectorCapabilities) {
it('triggers `after save` hook on create', function(done) {
TestModel.observe('after save', ctxRecorder.recordAndNext());
// The rationale behind passing { persisted: true } is to bypass the check
// made by DAO to determine whether the instance should be saved via
// PersistedModel.create and force it to call connector.save()
var instance = new TestModel(
{ id: 'new-id', name: 'created' },
{ persisted: true });