blob: 0fc9b71998ad9d2c7944911cff218392ef7f2469 [file] [log] [blame]
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,
}).ready().then((_PathKit) => {
console.log('pathkit loaded', new Date());
PathKit = _PathKit;
resolve();
}).catch((e) => {
console.error('pathkit failed to load', new Date(), e);
reject();
});
});