penguinmod-editor / test /unit /util /get-costume-url.test.js
soiz1's picture
Upload 1525 files
f2bee8a verified
raw
history blame contribute delete
493 Bytes
import {HAS_FONT_REGEXP} from '../../../src/lib/get-costume-url';
describe('SVG Font Parsing', () => {
test('Has font regexp works', () => {
expect('font-family="Sans Serif"'.match(HAS_FONT_REGEXP)).toBeTruthy();
expect('font-family="none" font-family="Sans Serif"'.match(HAS_FONT_REGEXP)).toBeTruthy();
expect('font-family = "Sans Serif"'.match(HAS_FONT_REGEXP)).toBeTruthy();
expect('font-family="none"'.match(HAS_FONT_REGEXP)).toBeFalsy();
});
});