[functional testing] Start new instance of es

This commit is contained in:
Jonathan Budzenski 2015-09-02 14:28:35 -05:00
parent 7b8374b7c8
commit 0d53f5ee13
2 changed files with 11 additions and 1 deletions

View file

@ -22,6 +22,15 @@ module.exports = function (grunt) {
}
}
},
dev: {}
dev: {},
ui: {
options: {
config: {
http: {
port: 9209
}
}
}
}
};
};

View file

@ -15,6 +15,7 @@ module.exports = function (grunt) {
]);
grunt.registerTask('test:ui', [
'esvm:ui',
'intern:dev'
]);