0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-13 22:41:32 -05:00

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) { }).then(function (found) {
should.exist(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); found.get('created_at').should.be.an.instanceof(Date);
done(); done();