10 lines
217 B
JavaScript
Raw Permalink Normal View History

2025-05-22 16:23:08 +08:00
'use strict'
var mqtt = require('../lib/connect')
describe('store in lib/connect/index.js (webpack entry point)', function () {
it('should create store', function (done) {
done(null, new mqtt.Store())
})
})