Remove some tests to see if it still errors

This commit is contained in:
rejas
2021-04-17 12:44:47 +02:00
parent 552e82f44d
commit 0abebc1e32
5 changed files with 0 additions and 221 deletions

View File

@@ -257,22 +257,6 @@ describe("Weather module", function () {
before(function () {
process.env.MM_CONFIG_FILE = "tests/configs/modules/weather/forecastweather_options.js";
});
it("should render custom table class", async function () {
const weather = generateWeatherForecast();
await setup({ template, data: weather });
await getElement(".weather table.myTableClass");
});
it("should render colored rows", async function () {
const weather = generateWeatherForecast();
await setup({ template, data: weather });
const rows = await app.client.$$(".weather table.myTableClass tr.colored");
expect(rows.length).to.be.equal(5);
});
});
describe("Forecast weather units", function () {