Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

newsfeed_spec.js 406B

123456789101112131415
  1. describe("Functions into modules/default/newsfeed/newsfeed.js", function () {
  2. // Fake for use by newsletter.js
  3. Module = {};
  4. Module.definitions = {};
  5. Module.register = function (name, moduleDefinition) {
  6. Module.definitions[name] = moduleDefinition;
  7. };
  8. beforeAll(function () {
  9. // load newsfeed.js
  10. require("../../../modules/default/newsfeed/newsfeed.js");
  11. });
  12. test.skip("skip", () => {});
  13. });