fix(privshield/wifi-veil): assert data_source on the replayBundle, not the top-level result

FlywheelResult has no dataSource field — @metaharness/flywheel stamps it
as replayBundle.data_source (snake_case). This test never actually ran in
CI here (nested .github/workflows/ under wifi-veil/ is inert on GitHub);
caught only once the wifi-veil/ tree was extracted to its own repo and its
own top-level Actions ran for real.
This commit is contained in:
ruv
2026-08-09 15:25:04 -02:30
parent e2ffecde9a
commit 50bcf0e215
2 changed files with 2 additions and 2 deletions

View File

@@ -21,6 +21,6 @@ describe('wifi-densepose-privshield-harness — flywheel (SYNTHETIC)', () => {
it('stamps the run as SYNTHETIC provenance', async () => {
const result = await runVeilFlywheelDemo(2);
expect(result.dataSource).toBe('SYNTHETIC');
expect(result.replayBundle.data_source).toBe('SYNTHETIC');
});
});

View File

@@ -21,6 +21,6 @@ describe('wifi-veil-harness — flywheel (SYNTHETIC)', () => {
it('stamps the run as SYNTHETIC provenance', async () => {
const result = await runVeilFlywheelDemo(2);
expect(result.dataSource).toBe('SYNTHETIC');
expect(result.replayBundle.data_source).toBe('SYNTHETIC');
});
});