Files
gitea/web_src/js/svg.test.js
T
37ca4cb7d6 Remove vitest globals (#21505)
Explicitly import them instead which is cleaner and enables better
editor integration.

Co-authored-by: Lunny Xiao <[email protected]>
Co-authored-by: wxiaoguang <[email protected]>
2022-10-19 14:50:19 +08:00

9 lines
258 B
JavaScript

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"');
});