From eaa37319a8ae5691cc11df444d65271893a1de26 Mon Sep 17 00:00:00 2001 From: Inga Lovinde <52715130+inga-lovinde@users.noreply.github.com> Date: Wed, 21 Oct 2015 12:51:09 +0300 Subject: [PATCH] Unit tests search pattern improved --- BuildServer/lib/tasks/dotnetnunitall.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BuildServer/lib/tasks/dotnetnunitall.js b/BuildServer/lib/tasks/dotnetnunitall.js index 21b2fd2..4b7d4ad 100644 --- a/BuildServer/lib/tasks/dotnetnunitall.js +++ b/BuildServer/lib/tasks/dotnetnunitall.js @@ -6,7 +6,7 @@ var dotNetBuilderWrapper = require('./dotnetbuilderwrapper'); module.exports = function (params, processor) { return { process: function () { - glob("**/bin/**/*.{Tests,Test}.dll", {cwd: processor.context.exported}, function (err, files) { + glob("**/bin/**/*.{Tests,Test,UnitTests}.dll", {cwd: processor.context.exported}, function (err, files) { if (err) { processor.onError(err); return processor.done();