1
0
mirror of https://github.com/go-gitea/gitea.git synced 2024-08-23 21:24:20 -04:00
gitea/web_src/js/svg.test.js

9 lines
258 B
JavaScript
Raw Normal View History

import {expect, test} from 'vitest';
import {svg} from './svg.js';
test('svg', () => {
expect(svg('octicon-repo')).toMatch(/^<svg/);
expect(svg('octicon-repo', 16)).toContain('width="16"');
expect(svg('octicon-repo', 32)).toContain('width="32"');
});