Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save HowardvanRooijen/a22fb1f6a8a067a0061db217905cda4d to your computer and use it in GitHub Desktop.

Select an option

Save HowardvanRooijen/a22fb1f6a8a067a0061db217905cda4d to your computer and use it in GitHub Desktop.
/*This file in the main entry point for defining grunt tasks and using grunt plugins.
Click here to learn more. http://go.microsoft.com/fwlink/?LinkID=513275&clcid=0x409*/
module.exports = function (grunt)
{
grunt.initConfig({
cucumberjs:
{
src: 'Features',
options:
{
steps: "Features"
}
}
});
grunt.loadNpmTasks('grunt-cucumber');
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment