summaryrefslogtreecommitdiffstats
path: root/web_src/js/svg.test.js
blob: c5d6d07535c7b2d9801d8f9a9e51d30da3cd0b66 (plain)
1
2
3
4
5
6
7
8
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"');
});