14 lines
515 B
TypeScript
14 lines
515 B
TypeScript
import { runtimeMonsterArtworkPath } from './monster-artwork';
|
|
|
|
describe('runtimeMonsterArtworkPath', () => {
|
|
it('returns the optimized JPEG derivative for a known monster artwork path', () => {
|
|
expect(runtimeMonsterArtworkPath('/images/monsters/ash-rat.png')).toBe(
|
|
'/images/monsters/runtime/ash-rat-560.jpg',
|
|
);
|
|
});
|
|
|
|
it('returns undefined for an artwork path with no runtime derivative', () => {
|
|
expect(runtimeMonsterArtworkPath('/images/enemies/Dawnwolf.png')).toBeUndefined();
|
|
});
|
|
});
|