blob: 2aa3ff5b17b07970923cf6a0794beb12d8b675dc [file] [edit]
import './index';
import fetchMock from 'fetch-mock';
import '../../../infra-sk/modules/theme-chooser-sk';
import { AlertsStatus } from '../../../perf/modules/json';
fetchMock.getOnce('https://skia-perf.luci.app/_/alerts/', <AlertsStatus>{
alerts: 5,
});
const el = document.createElement('perf-status-sk');
document.querySelector('#container')?.appendChild(el);