From c47bc35b0fd1e312940c75a7632eda0b6ec76a9e Mon Sep 17 00:00:00 2001 From: Hannah Wolfe Date: Tue, 1 Jun 2021 15:10:47 +0100 Subject: [PATCH] Switched test order so acceptance is last - This highlights slowness as the thing that sits staring at you uncomfortably in your terminal window --- Gruntfile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 2a58f2b16b..8409840709 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -450,11 +450,11 @@ const configureGrunt = function (grunt) { // `grunt validate` will either run all tests or run linting // `grunt validate` is called by `yarn test` and is used by Travis. grunt.registerTask('validate', 'Run tests', function () { - grunt.task.run(['test-acceptance', 'test-unit']); + grunt.task.run(['test-unit', 'test-acceptance']); }); grunt.registerTask('test-all', 'Run all server tests', - ['test-acceptance', 'test-unit', 'test-regression']); + ['test-unit', 'test-acceptance', 'test-regression']); // ### Lint //