Fix v1 cache service to only check ACTIONS_CACHE_URL

Co-authored-by: Link- <568794+Link-@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2025-07-14 13:39:13 +00:00
co-authored by Link-
parent 89397db14b
commit bd54a2413a
2 changed files with 6 additions and 8 deletions
+4 -4
View File
@@ -22,9 +22,9 @@ describe('isFeatureAvailable', () => {
expect(cache.isFeatureAvailable()).toBe(true)
})
test('returns true for cache service v1 when ACTIONS_RESULTS_URL is set', () => {
test('returns false for cache service v1 when only ACTIONS_RESULTS_URL is set', () => {
process.env['ACTIONS_RESULTS_URL'] = 'http://results.com'
expect(cache.isFeatureAvailable()).toBe(true)
expect(cache.isFeatureAvailable()).toBe(false)
})
test('returns true for cache service v1 when both URLs are set', () => {
@@ -61,9 +61,9 @@ describe('isFeatureAvailable', () => {
expect(cache.isFeatureAvailable()).toBe(true)
})
test('returns true for GHES with ACTIONS_RESULTS_URL', () => {
test('returns false for GHES with only ACTIONS_RESULTS_URL', () => {
process.env['GITHUB_SERVER_URL'] = 'https://my-enterprise.github.com'
process.env['ACTIONS_RESULTS_URL'] = 'http://results.com'
expect(cache.isFeatureAvailable()).toBe(true)
expect(cache.isFeatureAvailable()).toBe(false)
})
})