From 0424d8c2bf1649a861f0d47f28c79f92718df87a Mon Sep 17 00:00:00 2001 From: mzabriskie Date: Thu, 18 Jun 2015 20:49:08 -0600 Subject: [PATCH] Fixing issue with test suite running indefinitely in watch mode --- Gruntfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index c243d20..587f129 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -76,7 +76,7 @@ module.exports = function(grunt) { tasks: ['build'] }, test: { - files: ['lib/**/*.js', 'test/**/*.js'], + files: ['lib/**/*.js', 'test/**/*.js', '!test/typescript/axios.js', '!test/typescript/out.js'], tasks: ['test'] } }