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

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