fix/902 --bail flag not stopping execution when a test fails (#8103)

* fix/902 --bail flag not stopping execution when a test fails in a CSV file

* addressed review comments

* addressed review comments

* updated the package-lock file

* addressed review comments

* addressed review comments

* fix: add stripExtension utility to suitename assignment in run command
This commit is contained in:
sharan-bruno
2026-05-28 16:39:25 +05:30
committed by GitHub
parent b43a5e6e0a
commit 49088e98c8
6 changed files with 247 additions and 175 deletions

View File

@@ -2,6 +2,9 @@ const { version } = require('../package.json');
const CLI_EPILOGUE = `Documentation: https://docs.usebruno.com (v${version})`;
const CLI_VERSION = version;
const COLORS = {
ORANGE: '#FFA500'
};
// Exit codes
const EXIT_STATUS = {
@@ -38,5 +41,6 @@ const EXIT_STATUS = {
module.exports = {
CLI_EPILOGUE,
CLI_VERSION,
EXIT_STATUS
EXIT_STATUS,
COLORS
};