mirror of
https://github.com/Jeuners/ECC.git
synced 2026-09-10 07:22:30 +02:00
fix: skip flaky observer shell test on Windows (#722)
This commit is contained in:
parent
2643e0c72f
commit
7ccfda9e25
1 changed files with 4 additions and 0 deletions
|
|
@ -216,6 +216,10 @@ test('counter file handles missing/corrupt file gracefully', () => {
|
|||
console.log('\n--- observe.sh end-to-end throttle (shell execution) ---');
|
||||
|
||||
test('observe.sh creates counter file and increments on each call', () => {
|
||||
if (process.platform === 'win32') {
|
||||
return;
|
||||
}
|
||||
|
||||
// This test runs observe.sh with minimal input to verify counter behavior.
|
||||
// We need python3, bash, and a valid project dir to test the full flow.
|
||||
// We use ECC_SKIP_OBSERVE=0 and minimal JSON so observe.sh processes but
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue