Merge pull request #2699 from khassel/test-updates

This commit is contained in:
Michael Teeuw 2021-11-06 15:12:00 +01:00 committed by GitHub
commit 2b87d6ec01
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 5 additions and 3 deletions

View File

@ -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 `feels_like` data from openweathermaps current weather being ignored (#2678).
- Fixed chaotic newsfeed display after network connection loss thanks to @jalibu (#2638). - 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 incorrect time zone correction of recurring full day events (#2632 and #2634).
- Fixed e2e tests by increasing testTimeout.
## [2.17.1] - 2021-10-01 ## [2.17.1] - 2021-10-01

View File

@ -94,6 +94,7 @@
}, },
"jest": { "jest": {
"verbose": true, "verbose": true,
"testTimeout": 10000,
"projects": [ "projects": [
{ {
"displayName": "unit", "displayName": "unit",

View File

@ -1,7 +1,7 @@
const fetch = require("node-fetch"); const fetch = require("node-fetch");
const helpers = require("./global-setup"); const helpers = require("./global-setup");
describe("Electron app environment", function () { describe("App environment", function () {
beforeAll(function (done) { beforeAll(function (done) {
helpers.startApplication("tests/configs/default.js"); helpers.startApplication("tests/configs/default.js");
helpers.getDocument(done); helpers.getDocument(done);

View File

@ -3,7 +3,7 @@ const helpers = require("./global-setup");
describe("Display of modules", function () { describe("Display of modules", function () {
beforeAll(function (done) { beforeAll(function (done) {
helpers.startApplication("tests/configs/modules/display.js"); helpers.startApplication("tests/configs/modules/display.js");
helpers.getDocument(done); helpers.getDocument(done, 3000);
}); });
afterAll(function () { afterAll(function () {
helpers.stopApplication(); helpers.stopApplication();

View File

@ -3,7 +3,7 @@ const helpers = require("./global-setup");
describe("Position of modules", function () { describe("Position of modules", function () {
beforeAll(function (done) { beforeAll(function (done) {
helpers.startApplication("tests/configs/modules/positions.js"); helpers.startApplication("tests/configs/modules/positions.js");
helpers.getDocument(done, 1000); helpers.getDocument(done, 3000);
}); });
afterAll(function () { afterAll(function () {
helpers.stopApplication(); helpers.stopApplication();