From 986f1162ddd89a3154815c53a2585147b8a1e7a4 Mon Sep 17 00:00:00 2001 From: Alejandro Celaya Date: Sat, 13 Apr 2024 20:56:59 +0200 Subject: [PATCH] Set COLUMNS env var when running unit tests --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 99dc8a88..a8f52bd0 100644 --- a/composer.json +++ b/composer.json @@ -118,7 +118,7 @@ "@parallel test:unit test:db", "@parallel test:api test:cli" ], - "test:unit": "@php vendor/bin/phpunit --order-by=random --colors=always --testdox", + "test:unit": "COLUMNS=120 vendor/bin/phpunit --order-by=random --colors=always --testdox", "test:unit:ci": "@test:unit --coverage-php=build/coverage-unit.cov", "test:unit:pretty": "@test:unit --coverage-html build/coverage-unit/coverage-html", "test:db": "@parallel test:db:sqlite:ci test:db:mysql test:db:maria test:db:postgres test:db:ms",