skiplist: Sanity check inserted entries

This commit is contained in:
Richard Hansen 2021-04-12 01:35:27 -04:00
parent 9e2ef6ad5b
commit e2eb7327c2
4 changed files with 29 additions and 0 deletions

View file

@ -159,6 +159,11 @@ $(() => {
// get the list of specs and filter it if requested
const specs = specs_list.slice();
const absUrl = (url) => new URL(url, window.location.href).href;
require.setRootURI(absUrl('../../javascripts/src'));
require.setLibraryURI(absUrl('../../javascripts/lib'));
require.setGlobalKeyPath('require');
// inject spec scripts into the dom
const $body = $('body');
$.each(specs, (i, spec) => {