mirror of https://github.com/actions/toolkit
linting
parent
ec8e458bdc
commit
6664f1646a
|
@ -1,15 +1,14 @@
|
||||||
import * as cache from '../src/cache'
|
import * as cache from '../src/cache'
|
||||||
|
|
||||||
test('isFeatureAvailable returns true if server url is set', () => {
|
test('isFeatureAvailable returns true if server url is set', () => {
|
||||||
try {
|
try {
|
||||||
process.env['ACTIONS_CACHE_URL'] = 'http://cache.com'
|
process.env['ACTIONS_CACHE_URL'] = 'http://cache.com'
|
||||||
expect(cache.isFeatureAvailable()).toBe(true)
|
expect(cache.isFeatureAvailable()).toBe(true)
|
||||||
} finally {
|
} finally {
|
||||||
delete process.env['ACTIONS_CACHE_URL']
|
delete process.env['ACTIONS_CACHE_URL']
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
test('isFeatureAvailable returns false if server url is not set', () => {
|
test('isFeatureAvailable returns false if server url is not set', () => {
|
||||||
expect(cache.isFeatureAvailable()).toBe(false)
|
expect(cache.isFeatureAvailable()).toBe(false)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue