mirror of
https://github.com/usebruno/bruno.git
synced 2026-07-08 06:28:33 +00:00
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:
@@ -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
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user