Handle null/undefined value in test assertion.

No Issue.
- Test is not guaranteed to get a setting that has a "value"
  so we need to handle the case where it's null or undefined.
This commit is contained in:
Jason Williams 2014-10-30 15:40:23 +00:00
parent 2bd129fb81
commit 2cfab3565f

View File

@ -43,7 +43,7 @@ describe('Settings Model', function () {
}).then(function (found) {
should.exist(found);
found.get('value').should.equal(firstSetting.attributes.value);
should(found.get('value')).equal(firstSetting.attributes.value);
found.get('created_at').should.be.an.instanceof(Date);
done();