mqtt_store.js 217 B

123456789
  1. 'use strict'
  2. var mqtt = require('../lib/connect')
  3. describe('store in lib/connect/index.js (webpack entry point)', function () {
  4. it('should create store', function (done) {
  5. done(null, new mqtt.Store())
  6. })
  7. })