Yakov Litvin

Results 110 comments of Yakov Litvin

Thanks @MichalLytek, this cures the complain about a promise indeed, created a [PR](https://github.com/Synthetixio/synpress/pull/894) for this. There are other problems with watch mode though, I'll report those later.

By the way, "error in Cypress cli output" above is that for the second feature (I haven't committed the other one in the reference setup repo); for the first one...

Another thing to note is, Metamask doesn't get configured in its Chrome tab, like it used to be. Presumably the network issue is not being connect to Playwright. Oh, yeah!...

I'm no longer working on that project, but as you can see [from the reference repo](https://github.com/YakovL/synpress-cucumber/blob/master/.env#L12), I had `NETWORK_NAME` set to 'Polygon Mainnet', so your guess doesn't seem to be...

Well, the situation is the following: * there's a somewhat long chain of functions that causes saving, but one of the most important is `window.saveFile` [1](https://github.com/TiddlyWiki/tiddlywiki/blob/master/js/FileSystem.js#L21). It is used for...

Sorry, I've missed an important bit about async saving. The thing is, TWc is saved by "updating original" meaning that the original TW is _loaded_ first and then the saving...

So the first step would be to rewrite the `loadOriginal` + stuff after inside `saveChanges` in the async fashion: ``` function loadOriginal(localPath,callback) { var content = loadFile(localPath); if(!content) content =...

Next step would be to do the same stuff with `window.loadFile` and stuff inside `loadOriginal`: ``` function loadOriginal(localPath,callback) { var onLoad = function(content) { if(!content) content = window.originalHTML || recreateOriginal();...

Hi, sorry for delay, I guess you can overwrite `window.loadFile` and `window.saveFile` as a whole (anyway it is to be altered so that `mozillaLoadFile` is called with a `callback` as...

Well, I'm not sure about the mechanism, but syncronous saving is bad since TW hangs until the saving is finished, which is somewhat annoying at times (and the bigger TW...