avoid overriding config.js when running tests (#3205)

solves #3201
This commit is contained in:
Karsten Hassel
2023-09-22 14:45:46 +02:00
committed by GitHub
parent a67a0b677c
commit 95ec3096e0
9 changed files with 30 additions and 8 deletions

View File

@@ -1,9 +1,11 @@
const helpers = require("../helpers/global-setup");
const weatherHelper = require("../helpers/weather-setup");
const { cleanupMockData } = require("../../utils/weather_mocker");
describe("Weather module", () => {
afterEach(async () => {
await helpers.stopApplication();
await cleanupMockData();
});
describe("Current weather with sunrise", () => {