mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-27 19:53:36 +00:00
Merge pull request #2699 from khassel/test-updates
This commit is contained in:
commit
2b87d6ec01
@ -27,6 +27,7 @@ _This release is scheduled to be released on 2022-01-01._
|
||||
- Fixed `feels_like` data from openweathermaps current weather being ignored (#2678).
|
||||
- Fixed chaotic newsfeed display after network connection loss thanks to @jalibu (#2638).
|
||||
- Fixed incorrect time zone correction of recurring full day events (#2632 and #2634).
|
||||
- Fixed e2e tests by increasing testTimeout.
|
||||
|
||||
## [2.17.1] - 2021-10-01
|
||||
|
||||
|
@ -94,6 +94,7 @@
|
||||
},
|
||||
"jest": {
|
||||
"verbose": true,
|
||||
"testTimeout": 10000,
|
||||
"projects": [
|
||||
{
|
||||
"displayName": "unit",
|
||||
|
@ -1,7 +1,7 @@
|
||||
const fetch = require("node-fetch");
|
||||
const helpers = require("./global-setup");
|
||||
|
||||
describe("Electron app environment", function () {
|
||||
describe("App environment", function () {
|
||||
beforeAll(function (done) {
|
||||
helpers.startApplication("tests/configs/default.js");
|
||||
helpers.getDocument(done);
|
||||
|
@ -3,7 +3,7 @@ const helpers = require("./global-setup");
|
||||
describe("Display of modules", function () {
|
||||
beforeAll(function (done) {
|
||||
helpers.startApplication("tests/configs/modules/display.js");
|
||||
helpers.getDocument(done);
|
||||
helpers.getDocument(done, 3000);
|
||||
});
|
||||
afterAll(function () {
|
||||
helpers.stopApplication();
|
||||
|
@ -3,7 +3,7 @@ const helpers = require("./global-setup");
|
||||
describe("Position of modules", function () {
|
||||
beforeAll(function (done) {
|
||||
helpers.startApplication("tests/configs/modules/positions.js");
|
||||
helpers.getDocument(done, 1000);
|
||||
helpers.getDocument(done, 3000);
|
||||
});
|
||||
afterAll(function () {
|
||||
helpers.stopApplication();
|
||||
|
Loading…
x
Reference in New Issue
Block a user