diff --git a/tests/base-test.js b/tests/base-test.js index 75ccfd9..ba8d22c 100644 --- a/tests/base-test.js +++ b/tests/base-test.js @@ -71,8 +71,13 @@ module.exports.all = function (test, common) { recordStore.put('bananas', mdagObj_record_signature, function (err) { t.ifError(err, 'Should not throw') - t.pass('record was stored successfully') - t.end() + recordStore.get('bananas', function (err, records) { + t.ifError(err, 'Should not throw') + t.equal(records.length, 1) + t.pass('record was stored successfully') + t.end() + }) + }) }) })