1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-08-05 05:25:29 +02:00
planka/client/tests/acceptance/cucumber.conf.js

26 lines
494 B
JavaScript
Raw Normal View History

const {
After,
Before,
AfterAll,
BeforeAll,
setDefaultTimeout,
} = require("@cucumber/cucumber");
const { createSession, closeSession } = require("nightwatch-api");
setDefaultTimeout(60000);
// runs before all scenarios
BeforeAll(async function () {});
// runs before each scenario
Before(async function () {
await createSession();
});
// runs after each scenario
After(async function () {
await closeSession();
});
// runs after all scenarios
AfterAll(async function () {});