| import fetchMock from 'fetch-mock'; | |
| import './index'; | |
| import { IngestFileLinksSk } from './ingest-file-links-sk'; | |
| fetchMock.post('/_/details/?results=false', () => ({ | |
| version: 1, | |
| links: { | |
| 'Swarming Run': 'https://skia.org', | |
| 'Perfetto Results': 'https://skia.org', | |
| }, | |
| })); | |
| window.customElements.whenDefined('ingest-file-links-sk').then(() => { | |
| const sources = document.querySelectorAll<IngestFileLinksSk>('ingest-file-links-sk')!; | |
| sources.forEach((source) => { | |
| source.load(12, 'foo'); | |
| }); | |
| }); |