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
69 lines
1.8 KiB
Plaintext
69 lines
1.8 KiB
Plaintext
/*
|
|
Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
This source code is licensed under the MIT license found in the
|
|
LICENSE file at
|
|
https://github.com/facebook/create-react-app/blob/main/LICENSE
|
|
*/
|
|
|
|
/* global Application */
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
function run(argv) {
|
|
const urlToOpen = argv[0]
|
|
// Allow requested program to be optional, default to Google Chrome
|
|
const programName = argv[1] ?? 'Google Chrome'
|
|
|
|
const app = Application(programName)
|
|
|
|
if (app.windows.length === 0) {
|
|
app.Window().make()
|
|
}
|
|
|
|
// 1: Looking for tab running debugger then,
|
|
// Reload debugging tab if found, then return
|
|
const found = lookupTabWithUrl(urlToOpen, app)
|
|
if (found) {
|
|
found.targetWindow.activeTabIndex = found.targetTabIndex
|
|
found.targetTab.reload()
|
|
found.targetWindow.index = 1
|
|
app.activate()
|
|
return
|
|
}
|
|
|
|
// 2: Looking for Empty tab
|
|
// In case debugging tab was not found
|
|
// We try to find an empty tab instead
|
|
const emptyTabFound = lookupTabWithUrl('chrome://newtab/', app)
|
|
if (emptyTabFound) {
|
|
emptyTabFound.targetWindow.activeTabIndex = emptyTabFound.targetTabIndex
|
|
emptyTabFound.targetTab.url = urlToOpen
|
|
app.activate()
|
|
return
|
|
}
|
|
|
|
// 3: Create new tab
|
|
// both debugging and empty tab were not found make a new tab with url
|
|
const firstWindow = app.windows[0]
|
|
firstWindow.tabs.push(app.Tab({ url: urlToOpen }))
|
|
app.activate()
|
|
}
|
|
|
|
/**
|
|
* Lookup tab with given url
|
|
*/
|
|
function lookupTabWithUrl(lookupUrl, app) {
|
|
const windows = app.windows()
|
|
for (const window of windows) {
|
|
for (const [tabIndex, tab] of window.tabs().entries()) {
|
|
if (tab.url().includes(lookupUrl)) {
|
|
return {
|
|
targetTab: tab,
|
|
targetTabIndex: tabIndex + 1,
|
|
targetWindow: window,
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|