From 4a9f7cc74baa0fa3666fca0209409e479122c690 Mon Sep 17 00:00:00 2001 From: Julian Descottes Date: Sat, 20 May 2017 17:31:55 +0200 Subject: [PATCH] add grunt task to run drawing tests --- Gruntfile.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Gruntfile.js b/Gruntfile.js index 087aa61..5cfa7cf 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -356,6 +356,8 @@ module.exports = function(grunt) { grunt.registerTask('unit-test', ['karma']); // Run integration tests grunt.registerTask('integration-test', ['build-dev', 'connect:test', 'casperjs:integration']); + // Run drawing tests + grunt.registerTask('drawing-test', ['build-dev', 'connect:test', 'casperjs:drawing']); // Run linting, unit tests, drawing tests and integration tests grunt.registerTask('test', ['lint', 'unit-test', 'build-dev', 'connect:test', 'casperjs:drawing', 'casperjs:integration']);