Merge pull request #33482 from overleaf/ar-mixpanel-labs-project

[web/analytics] Send labs user's events to separate mixpanel project

GitOrigin-RevId: 42612b71d2d7a082ffbe1ff614499a0b94553b90
This commit is contained in:
Andrew Rumble
2026-05-29 08:05:57 +00:00
committed by Copybot
parent 5f7e81aafc
commit bb7643f697
11 changed files with 227 additions and 83 deletions
@@ -65,10 +65,10 @@ describe('CompileManager', function () {
}))
vi.doMock(
'../../../../app/src/Features/Analytics/UserAnalyticsIdCache',
'../../../../app/src/Features/Analytics/UserAnalyticsDataCache',
() => ({
default: (ctx.UserAnalyticsIdCache = {
getWithMetrics: sinon.stub().resolves('abc'),
default: (ctx.UserAnalyticsDataCache = {
getAnalyticsId: sinon.stub().resolves('abc'),
}),
})
)