From 6a4222b6313308d03d12062d52de90fceda5f40a Mon Sep 17 00:00:00 2001 From: Gordon Woodhull Date: Tue, 21 Apr 2015 21:06:52 -0400 Subject: [PATCH] skip regression test it is hanging on develop locally. it is randomly dying on travis. it burns a lot of developer time. it will disappear entirely soon. --- Gruntfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index ff65cd954..18c8ffefe 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -373,7 +373,7 @@ module.exports = function (grunt) { grunt.registerTask('docs', ['build', 'copy', 'emu', 'toc', 'markdown', 'docco']); grunt.registerTask('web', ['docs', 'gh-pages']); grunt.registerTask('server', ['docs', 'fileindex', 'jasmine:specs:build', 'connect:server', 'watch:jasmine']); - grunt.registerTask('test', ['build', 'jasmine:specs', 'test-stock-example', 'shell:hooks']); + grunt.registerTask('test', ['build', 'jasmine:specs', 'shell:hooks']); grunt.registerTask('test-browserify', ['build', 'browserify', 'jasmine:browserify']); grunt.registerTask('coverage', ['build', 'jasmine:coverage']); grunt.registerTask('ci', ['test', 'jasmine:specs:build', 'connect:server', 'saucelabs-jasmine']);