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 fe02d66835
commit e6f713ae59

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'
]);
};