Browse Source

Remove --color switch from phpunit command.

Colors are already enabled in the phpunit.xml.dist file so the command line switch shouldn't be required.
ADmad 9 years ago
parent
commit
7391dc24a4
1 changed files with 2 additions and 2 deletions
  1. 2 2
      composer.json

+ 2 - 2
composer.json

@@ -78,7 +78,7 @@
         ],
         "cs-check": "phpcs --colors -p ./src ./tests",
         "cs-fix": "phpcbf --colors ./src ./tests",
-        "test": "phpunit --colors=always",
-        "test-coverage": "phpunit --colors=always --coverage-clover=clover.xml"
+        "test": "phpunit",
+        "test-coverage": "phpunit --coverage-clover=clover.xml"
     }
 }