|  | import './index'; | 
|  | import '../../../infra-sk/modules/theme-chooser-sk'; | 
|  | import fetchMock from 'fetch-mock'; | 
|  | import { $$ } from '../../../infra-sk/modules/dom'; | 
|  | import { pageSets } from '../pageset-selector-sk/test_data'; | 
|  | import '../../../elements-sk/modules/error-toast-sk'; | 
|  |  | 
|  | fetchMock.config.overwriteRoutes = false; | 
|  | fetchMock.post('begin:/_/page_sets/', pageSets); | 
|  | // For determining running tasks for the user we just say 2. | 
|  | fetchMock.postOnce('begin:/_/get', { | 
|  | data: [], | 
|  | ids: [], | 
|  | pagination: { offset: 0, size: 1, total: 2 }, | 
|  | permissions: [], | 
|  | }); | 
|  | fetchMock.post('begin:/_/get', { | 
|  | data: [], | 
|  | ids: [], | 
|  | pagination: { offset: 0, size: 1, total: 0 }, | 
|  | permissions: [], | 
|  | }); | 
|  |  | 
|  | const chromiumPerf = document.createElement('admin-tasks-sk'); | 
|  | ($$('#container') as HTMLElement).appendChild(chromiumPerf); |