24 lines
449 B
JavaScript
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,
|
|
};
|