Simon Priet 9e2991e668 init
2021-09-05 22:53:58 +02:00

24 lines
449 B
JavaScript

// reexporting here for backward compability
const {
Given,
When,
Then,
And,
But,
defineParameterType,
} = require("./lib/resolveStepDefinition");
// eslint-disable-next-line no-console
console.warn(
"DEPRECATION WARNING! Please change your imports from cypress-cucumber-preprocessor/resolveStepDefinition to cypress-cucumber-preprocessor/steps"
);
module.exports = {
Given,
When,
Then,
And,
But,
defineParameterType,
};