thing-it-device-helbio
Version:
[thing-it-node] Device Plugin for Helbio © products.
27 lines (17 loc) • 619 B
JavaScript
var assert = require("assert");
describe('[thing-it] Kidde Plugin', function () {
var testDriver;
before(function () {
testDriver = require("thing-it-test").createTestDriver({logLevel: "error"});
testDriver.registerDevicePlugin(__dirname + "/../smokeDetector");
});
describe('Start Configuration', function () {
this.timeout(5000);
it('should complete without error', function () {
return testDriver.start({
configuration: require("../examples/configuration.js"),
heartbeat: 10
});
});
});
});