You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

svg.test.js 258B

12345678
  1. import {expect, test} from 'vitest';
  2. import {svg} from './svg.js';
  3. test('svg', () => {
  4. expect(svg('octicon-repo')).toMatch(/^<svg/);
  5. expect(svg('octicon-repo', 16)).toContain('width="16"');
  6. expect(svg('octicon-repo', 32)).toContain('width="32"');
  7. });