You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
494 B
JavaScript
26 lines
494 B
JavaScript
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 () {});
|