Add system property picocli.ansi=false, to help reliability of tests, which can fail if the don't expect ansci codes in the outputs

This commit is contained in:
2024-07-05 20:26:06 -05:00
parent 2be41d8714
commit 1669741d19

View File

@ -70,6 +70,7 @@ class QPicoCliImplementationTest
@BeforeEach
public void beforeEach() throws Exception
{
System.setProperty("picocli.ansi", "false");
TestUtils.primeTestDatabase();
QContext.init(TestUtils.defineInstance(), new QSession());
}