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 224B

1234567
  1. import {svg} from './svg.js';
  2. test('svg', () => {
  3. expect(svg('octicon-repo')).toStartWith('<svg');
  4. expect(svg('octicon-repo', 16)).toInclude('width="16"');
  5. expect(svg('octicon-repo', 32)).toInclude('width="32"');
  6. });