Some checks failed
Main Confidence / confidence (push) Failing after 45s
## Summary - introduce surface-aware compressed governance outcomes and reuse the shared truth/explanation seams for operator-first summaries - apply the compressed outcome hierarchy across baseline, evidence, review, review-pack, canonical review/evidence, and artifact-oriented operation-run surfaces - expand spec 214 fixtures and Pest coverage, and fix tenant-panel route assertions by generating explicit tenant-panel URLs in the affected Filament tests ## Validation - `cd apps/platform && ./vendor/bin/sail bin pint --dirty --format agent` - focused governance compression suite from `specs/214-governance-outcome-compression/quickstart.md` passed (`68` tests, `445` assertions) - `cd apps/platform && ./vendor/bin/sail artisan test --compact tests/Feature/Filament/InventoryItemResourceTest.php tests/Feature/Filament/BackupSetUiEnforcementTest.php tests/Feature/Filament/RestoreRunUiEnforcementTest.php` passed (`18` tests, `81` assertions) Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #253
74 lines
2.3 KiB
Plaintext
74 lines
2.3 KiB
Plaintext
"use strict";
|
|
// This file is meant to be a shared place for default configs.
|
|
// It's read by the flow controllers, the executable, etc.
|
|
// Refer to tests for the meaning of the different possible values.
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.killSignal = exports.passthroughArguments = exports.timings = exports.cwd = exports.timestampFormat = exports.success = exports.restartDelay = exports.restartTries = exports.raw = exports.prefixLength = exports.prefixColors = exports.prefix = exports.nameSeparator = exports.hide = exports.maxProcesses = exports.handleInput = exports.defaultInputTarget = void 0;
|
|
exports.defaultInputTarget = 0;
|
|
/**
|
|
* Whether process.stdin should be forwarded to child processes.
|
|
*/
|
|
exports.handleInput = false;
|
|
/**
|
|
* How many processes to run at once.
|
|
*/
|
|
exports.maxProcesses = 0;
|
|
/**
|
|
* Indices and names of commands whose output are not to be logged.
|
|
*/
|
|
exports.hide = '';
|
|
/**
|
|
* The character to split <names> on.
|
|
*/
|
|
exports.nameSeparator = ',';
|
|
/**
|
|
* Which prefix style to use when logging processes output.
|
|
*/
|
|
exports.prefix = '';
|
|
/**
|
|
* Default prefix color.
|
|
* @see https://www.npmjs.com/package/chalk
|
|
*/
|
|
exports.prefixColors = 'reset';
|
|
/**
|
|
* How many bytes we'll show on the command prefix.
|
|
*/
|
|
exports.prefixLength = 10;
|
|
exports.raw = false;
|
|
/**
|
|
* Number of attempts of restarting a process, if it exits with non-0 code.
|
|
*/
|
|
exports.restartTries = 0;
|
|
/**
|
|
* How many milliseconds concurrently should wait before restarting a process.
|
|
*/
|
|
exports.restartDelay = 0;
|
|
/**
|
|
* Condition of success for concurrently itself.
|
|
*/
|
|
exports.success = 'all';
|
|
/**
|
|
* Date format used when logging date/time.
|
|
* @see https://www.unicode.org/reports/tr35/tr35-dates.html#Date_Field_Symbol_Table
|
|
*/
|
|
exports.timestampFormat = 'yyyy-MM-dd HH:mm:ss.SSS';
|
|
/**
|
|
* Current working dir passed as option to spawn command.
|
|
* Defaults to process.cwd()
|
|
*/
|
|
exports.cwd = undefined;
|
|
/**
|
|
* Whether to show timing information for processes in console output.
|
|
*/
|
|
exports.timings = false;
|
|
/**
|
|
* Passthrough additional arguments to commands (accessible via placeholders) instead of treating them as commands.
|
|
*/
|
|
exports.passthroughArguments = false;
|
|
/**
|
|
* Signal to send to other processes if one exits or dies.
|
|
*
|
|
* Defaults to OS specific signal. (SIGTERM on Linux/MacOS)
|
|
*/
|
|
exports.killSignal = undefined;
|