add CHANGELOG and fix weather_spec

This commit is contained in:
Karsten Hassel 2022-01-13 22:37:21 +01:00
parent b714abd9a0
commit 82bb2544de
2 changed files with 4 additions and 2 deletions

View File

@ -23,6 +23,8 @@ _This release is scheduled to be released on 2022-04-01._
### Fixed ### Fixed
- improved and speedup e2e tests, artificial wait after mm start removed.
## [2.18.0] - 2022-01-01 ## [2.18.0] - 2022-01-01
Special thanks to the following contributors: @AmpioRosso, @eouia, @fewieden, @jupadin, @khassel, @kolbyjack, @KristjanESPERANTO, @MariusVaice, @rejas, @rico24 and @sdetweil. Special thanks to the following contributors: @AmpioRosso, @eouia, @fewieden, @jupadin, @khassel, @kolbyjack, @KristjanESPERANTO, @MariusVaice, @rejas, @rico24 and @sdetweil.

View File

@ -233,8 +233,8 @@ describe("Weather module", function () {
}); });
it("should render colored rows", function () { it("should render colored rows", function () {
helpers.waitForElement(".weather table.myTableClass").then((elem) => { helpers.waitForElement(".weather table.myTableClass").then((table) => {
expect(elem).not.toBe(null); expect(table).not.toBe(null);
expect(table.rows).not.toBe(null); expect(table.rows).not.toBe(null);
expect(table.rows.length).toBe(5); expect(table.rows.length).toBe(5);
}); });