Skip to content

Commit be7338a

Browse files
Cover frame filter config in public API tests
Co-authored-by: Shri Sukhani <shrisukhani@users.noreply.github.com>
1 parent 7ad1a26 commit be7338a

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

src/__tests__/public-api.test.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,12 @@ describe("public API exports", () => {
6767

6868
expect(performParams.contextSwitchRetryDelayMs).toBe(500);
6969
});
70+
71+
it("exposes frame-filter configuration on public HyperAgentConfig", () => {
72+
const config: HyperAgentConfig = {
73+
filterAdTrackingFrames: false,
74+
};
75+
76+
expect(config.filterAdTrackingFrames).toBe(false);
77+
});
7078
});

0 commit comments

Comments
 (0)