import {Given} from "@cucumber/cucumber";
import scriptExecute from "../helpers/framework-helpers/action/scriptExecute";

Given(/^I execute the script "([^"]*)"$/, async (script: string) => {
    console.log(`I execute the script ${script}`);
    await scriptExecute(script);
});



