skutter
Version:
Skutter: Opinionated BDD Browser based test framework
19 lines (18 loc) • 463 B
JavaScript
;
const stack_1 = require("./stack");
class TestContext {
constructor() {
this.page = null;
this.browser = null;
this.inspectionStack = new stack_1.Stack();
this.annotations = [];
this.meta = {
scenarioTitle: "Not Set",
featureTitle: "Not Set",
featureId: null,
scenarioId: null,
stepId: null
};
}
}
exports.TestContext = TestContext;