feat: Add Be and tbd skill, also added Roadmap file

This commit is contained in:
2026-05-10 16:32:12 -04:00
parent 3500ade13f
commit 0bb8885802
29587 changed files with 10611695 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
"use strict";
var api = require("../index.js"),
testValues = require("./support/testValues.js"),
expect = require("chai").expect;
//TODO update these tests
describe.skip("Hue API", function () {
//todo validate the _config object
describe("#creation", function() {
it("should have a default timeout", function(){
var hue = new api.HueApi(testValues.host, testValues.username);
expect(hue).to.have.property("timeout", 10000);
});
it("should have a non-default timeout if specified", function(){
var hue = new api.HueApi(testValues.host, testValues.username, 30000);
expect(hue).to.have.property("timeout", 30000);
});
});
});