mirror of
https://github.com/fluencelabs/js-libp2p-interfaces
synced 2025-04-10 14:46:23 +00:00
16 lines
495 B
JavaScript
16 lines
495 B
JavaScript
|
module.exports.all = function (test, common) {
|
||
|
|
||
|
test('Store a valid record', function (t) {
|
||
|
common.setup(test, function (err, recordStore) {
|
||
|
t.ifError(err, 'Should not throw')
|
||
|
t.pass('woo')
|
||
|
})
|
||
|
})
|
||
|
|
||
|
test('Store an unvalid record')
|
||
|
test('Store and retrieve a valid record')
|
||
|
test('Store a bunch of valid and unvalid records and check what gets retrieved')
|
||
|
test('Store a bunch of records with variable validity, wait for some to expire, check what gets retrieved')
|
||
|
|
||
|
}
|