@meganet/loopback-connector-kv-redis
Version:
The official Redis KeyValue connector for LoopBack
15 lines (12 loc) • 437 B
JavaScript
// Copyright IBM Corp. 2016,2018. All Rights Reserved.
// Node module: loopback-connector-kv-redis
// This file is licensed under the MIT License.
// License text available at https://opensource.org/licenses/MIT
;
const createDataSource = require('../helpers/data-source-factory');
describe('ping', function() {
it('returns with no error', function(done) {
const ds = createDataSource();
ds.ping(done);
});
});