homebridge-freeathome-local-api
Version:
Control your free@home setup using the local API provided by your System Access Point
14 lines (11 loc) • 397 B
text/typescript
import { originalTimeout } from "./../test.js";
import { PLUGIN_NAME } from "./../src/settings.js";
describe("Example Test Suite", () => {
afterAll(() => {
// Restore the default Jasmine timeout after the test suite.
jasmine.DEFAULT_TIMEOUT_INTERVAL = originalTimeout;
});
it("should be executed", () => {
expect(PLUGIN_NAME).toBe("homebridge-freeathome-local-api");
});
});