Merge pull request #22082 from overleaf/mf-remove-is-split-test-active

[web] Remove `isSplitTestActive` function since it is no longer used

GitOrigin-RevId: 81f3f61f14bb10d403fa72a61dc4a304c191512f
This commit is contained in:
M Fahru
2024-12-18 09:05:55 +00:00
committed by Copybot
parent 659f15d010
commit 6daf2bef45
2 changed files with 0 additions and 37 deletions
@@ -311,32 +311,6 @@ describe('SplitTestHandler', function () {
)
})
})
describe('isSplitTestActive', function () {
it('returns false when current version is not active', async function () {
const res =
await this.SplitTestHandler.promises.isSplitTestActive(
'not-active-test'
)
expect(res).to.be.false
})
it('returns undefined false when current version is active', async function () {
const res =
await this.SplitTestHandler.promises.isSplitTestActive('active-test')
expect(res).to.be.true
})
it('returns undefined when there is an error checking', async function () {
this.SplitTestCache.get.rejects(new Error('oops'))
const res =
await this.SplitTestHandler.promises.isSplitTestActive('active-test')
expect(res).to.be.undefined
})
it('returns undefined when there is no test', async function () {
const res =
await this.SplitTestHandler.promises.isSplitTestActive('not-a-test')
expect(res).to.be.undefined
})
})
})
function makeSplitTest(