Don't run functional UI tests on Travis (add eslint:source).

Fixes #5569
This commit is contained in:
LeeDr 2015-12-04 14:02:32 -06:00 committed by Lee Drengenberg
parent 03c54c1ae9
commit 50c75dda4d

View file

@ -2,8 +2,8 @@ module.exports = function (grunt) {
grunt.registerTask('travis', 'Travis CI build script', [
'eslint:source',
'test:browser',
'test:server'
'test:server',
'test:browser'
]);
};