mirror of
https://github.com/ruvnet/RuView.git
synced 2026-08-26 02:04:55 +00:00
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:
@@ -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');
|
||||
});
|
||||
});
|
||||
|
||||
@@ -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');
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user