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.

16 lines
478 B

jasmine.DEFAULT_TIMEOUT_INTERVAL = 20000;
let PathKit = null;
const LoadPathKit = new Promise(function(resolve, reject) {
console.log('pathkit loading', new Date());
PathKitInit({
locateFile: (file) => '/pathkit/'+file,
}).then((_PathKit) => {
console.log('pathkit loaded', new Date());
PathKit = _PathKit;
resolve();
}).catch((e) => {
console.error('pathkit failed to load', new Date(), e);
reject();
});
});