Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
module.exports = (grunt) => {
grunt.initConfig({
nightwatch: {
'default': {
argv: {}
}
}
})
nightwatch.initGrunt(grunt)
grunt.registerTask('default', ['nightwatch'])
}
module.exports = function(grunt) {
require('load-grunt-tasks')(grunt);
require('nightwatch').initGrunt(grunt);
require('time-grunt')(grunt);
grunt.initConfig({
connect: {
server: {
options: {
hostname: 'yt.127.0.0.1.xip.io',
port: 28080,
base: '.'
},
},
},
nightwatch: {
options: {
cwd: './test/'
},