skia2/modules/pathkit/tests/pathkitinit.js
Kevin Lubick d254435603 [pathkit] Clean up perf/test init
This will hopefully help with flakiness.

Bug: skia:8810
Change-Id: Id2fa9abcc0e95f0cf8b08557215766b4f9c57478
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/200047
Reviewed-by: Ben Wagner <benjaminwagner@google.com>
2019-03-12 13:46:41 +00:00

16 lines
486 B
JavaScript

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();
});
});