mirror of
https://github.com/stablyai/orca.git
synced 2026-09-22 16:02:32 +00:00
* test: exercise packaged browser compatibility in scheduled CI * test: record final packaged workflow participation evidence * test: expose manual packaged revision and simplify executable check * test: reject missing package checksum assertion
19 lines
818 B
JavaScript
19 lines
818 B
JavaScript
import { verifyPlaywrightParticipation } from './verify-playwright-participation.mjs'
|
|
import { readFileSync } from 'node:fs'
|
|
import { pathToFileURL } from 'node:url'
|
|
|
|
export const WSL_TEST_TITLES = [
|
|
'tab-bar + menu launches an agent inside WSL @tab-bar-agent-launch-golden',
|
|
'WSL terminal keyboard paste preserves Linux shell content with one PTY owner',
|
|
'existing WSL terminal keeps paste runtime after default shell changes'
|
|
]
|
|
|
|
export function verifyWslParticipation(report) {
|
|
verifyPlaywrightParticipation(report, { titles: WSL_TEST_TITLES, label: 'WSL' })
|
|
}
|
|
|
|
if (process.argv[1] && import.meta.url === pathToFileURL(process.argv[1]).href) {
|
|
verifyWslParticipation(JSON.parse(readFileSync(process.argv[2], 'utf8')))
|
|
console.log('All three WSL scenarios passed three times without skips or retries.')
|
|
}
|