images-set-to-webp-converter
Version:
Powerful util for images (.png | .jpeg | .jpg) set conversion to .webp, generated by Abobe Images Processor Pro plugin
11 lines (9 loc) • 323 B
text/typescript
import isAlreadyWebP from '../src/utils/isAlreadyWebP'
describe('isAlreadyWebP()', () => {
it('should return false if image non-webp', () => {
expect(isAlreadyWebP('element.webp')).toBeTruthy()
})
it('should return true if image is non-webp', () => {
expect(isAlreadyWebP('element.png')).toBeFalsy()
})
})