Unit tests search pattern improved

dependabot/npm_and_yarn/BuildServer/eslint-7.2.0
Inga 🏳‍🌈 9 years ago
parent a648466327
commit eaa37319a8
  1. 2
      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();

Loading…
Cancel
Save