Last active
June 21, 2020 16:29
-
-
Save HowardvanRooijen/a22fb1f6a8a067a0061db217905cda4d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /*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