Skip to content

Commit 490e886

Browse files
committed
Use static web server for development (default Grunt task).
1 parent ae9d347 commit 490e886

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Gruntfile.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ module.exports = grunt => {
195195
},
196196

197197
connect: {
198-
functionalTests: {
198+
website: {
199199
options: {
200200
hostname: '127.0.0.1',
201201
base: 'dist/website',
@@ -256,11 +256,11 @@ module.exports = grunt => {
256256

257257
grunt.registerTask('functional-tests', [
258258
'build-website-dev',
259-
'connect:functionalTests',
259+
'connect:website',
260260
'mochaTest:functional'
261261
]);
262262

263263
grunt.registerTask('test', ['unit-tests', 'functional-tests']);
264264

265-
grunt.registerTask('default', ['build-dev', 'watch']);
265+
grunt.registerTask('default', ['build-dev', 'connect:website', 'watch']);
266266
};

0 commit comments

Comments
 (0)