Update weather_spec.js

try to change the default to Today and Tomorrow
This commit is contained in:
flopp999
2020-10-20 07:26:39 +02:00
committed by GitHub
parent 3c84002abd
commit e09fec56e2

View File

@@ -186,7 +186,7 @@ describe("Weather module", function () {
const weather = generateWeatherForecast();
await setup({ template, data: weather });
const days = ["Fri", "Sat", "Sun", "Mon", "Tue"];
const days = ["Today", "Tomorrow", "Sun", "Mon", "Tue"];
for (const [index, day] of days.entries()) {
await app.client.waitUntilTextExists(`.weather table.small tr:nth-child(${index + 1}) td:nth-child(1)`, day, 10000);