homebridge-freeathome-local-api
Version:
Control your free@home setup using the local API provided by your System Access Point
18 lines (15 loc) • 367 B
JavaScript
import Jasmine from "jasmine";
const jasmine = new Jasmine();
jasmine.loadConfig({
spec_dir: "test",
spec_files: ["**/*.spec.ts"],
helpers: ["test.ts"],
jsLoader: "import",
stopSpecOnExpectationFailure: false,
random: true,
});
jasmine.execute().catch((error) => {
// eslint-disable-next-line no-console
console.error(error);
process.exit(1);
});