diff --git a/tests/e2e/modules/weather_spec.js b/tests/e2e/modules/weather_spec.js new file mode 100644 index 00000000..b6038d3b --- /dev/null +++ b/tests/e2e/modules/weather_spec.js @@ -0,0 +1,26 @@ +const fs = require("fs"); +const _ = require("lodash"); +const moment = require("moment"); +const wdajaxstub = require("webdriverajaxstub"); + +const helpers = require("../global-setup"); + +describe("Weather module", function() { + let app; + + helpers.setupTimeout(this); + + async function setup(responses) { + app = await helpers.startApplication({ + args: ["js/electron.js"] + }); + + wdajaxstub.init(app.client, responses); + + app.client.setupStub(); + } + + afterEach(function() { + return helpers.stopApplication(app); + }); +});