Jim Higson
Jim Higson
@jessegit - do you know if @netpoetica 's fork fixes it? I haven't tested very much with file URLs but see no reason not to incorporate support for them if...
Ah yes, I can see then why you'd want to load from a file:// url. I agree with the general approach that you mention. I'm not sure how a test...
Ok, this should be pretty simple. I can make a connect endpoint like this: ``` js function serveCheckedOutLocation(req, res) { res.send({fileUrl:'file://' + __dirname}); } ``` Which replies like this: ```...
(currently failing) integration test in a branch set up for this... https://github.com/jimhigson/oboe.js/blob/fileUrls/test/specs/oboe.integration.spec.js#L209
@netpoetica - in your patch you check `window.location.protocol === 'file:'` - actually this is rather more difficult to test than I thought. Of course, Karma running over http can't simply...
Karma uses actual browsers, but the browser can be headless. It is probably ok to do this as a unit test by stubbing window.location.protocol (or probably, by stubbing something wrapping...
Ok I think the only safe way is to look at the protocol of the URL being requested, not the URL of the page (although that would default to the...
Ok, here's what I think is happening regarding the 'done' events... Your JSON stream is actually many JSON objects concatenated into a file. Ie, it couldn't be read by a...
Oh dear, I've been very busy recently and musnn't have noticed. I'll get in contact with the registrar and see if there is anything that can be done On Fri,...
Ok, I have paid to renew. It should be working again soon. On Sat, Nov 7, 2020 at 10:30 AM Jim Higson wrote: > Oh dear, I've been very busy...