diff --git a/grunt/config/connect.js b/grunt/config/connect.js index 7508f41e5..8e1084e3c 100644 --- a/grunt/config/connect.js +++ b/grunt/config/connect.js @@ -2,7 +2,7 @@ module.exports = function (grunt, options) { var port = grunt.option('port') || 9001; var host = grunt.option('host') || "localhost"; - + return { server: { options: { @@ -17,7 +17,7 @@ module.exports = function (grunt, options) { port: port, base: '<%= outputdir %>', keepalive:true, - path: 'http://'+host+':'+port+'/scorm_test_harness.html' + open: 'http://'+host+':'+port+'/scorm_test_harness.html' } } }