scottschafer
scottschafer
Hi Joeny - I'm glad you're getting good use out of it. I'm not actively maintaining it right now. The last update I made was actually to https://github.com/scottschafer/cypressautomockerV2, which takes...
The main difference in V2 is that you don't have to modify the program being tested. Also, the API responses are stored in separate files (with either a TXT or...
I'm not seeing this issue in sample code, using Cypress 3.4.0.
Sorry, I miswrote. Yes, I meant 3.4.0. In any case, I pushed an update just now that uses Cypress 3.4.0 and I'm not seeing the issue that you're referring to,...
Yeah, this library assumes that every run will call the exact same APIs with the same query strings. If that's not the case (for example, you're passing the current timestamp...
To @liquidprogrammer , the fix looked something like this in the template: ``` { if (toState.name !== 'home.patients.details.coding.encounter') { this.includeEncounterView = false; if ($('#encounter-view-ng').length) { event.preventDefault(); const checkTornDownInterval = $interval(()...
You're right. I see that Effects is equivalent to epics. And I'm struggling with that architecture a bit too. I've seen this push to decouple everything as much as possible...
This is probably *not* the place for this, but I wonder if you wouldn't mind taking a look at a project I threw together. https://scottschafer.github.io//xcelsior-sample/ Obviously, this represents a huge...
This seems to fix it. I added **sourcemap** to new webpack.optimize.UglifyJsPlugin(..., and ** devtool: 'source-map',** towebpack-dist.conf.js. Additions in bold: const webpack = require('webpack'); const conf = require('./gulp.conf'); const path =...
This issue can be closed. It was my mistake thinking that run_1d ran synchronously - I was generating a lot of async tasks, and apparently copyToHost() blocks until all have...