C Deutsch

Results 46 comments of C Deutsch

I had the same question. Looks like only the `es2015` ones do the tree shaking. Here are the results of `npm run webpack` and `npm run webpack-es2015` ![image](https://cloud.githubusercontent.com/assets/404765/21734290/3f52f674-d428-11e6-8671-9902042684ab.png)

Thanks @talisto, that's what I've been doing as a work around, but took two days to come up with that. https://github.com/garris/BackstopJS/issues/1300#issuecomment-958561525 I'm using puppeteer via Backstop JS and in my...

@ReDrUm the ideal fix would be an arm build of Chromium for Debian, but doesn't sound like that's on Puppeteer's radar. Here's the Dockerfile I used to work around my...

Thanks that seems to work. I would have expected `app.service` to accept a type that dictates the return type. Eg: ```typescript app.service('messages').create({ ... }); ``` Not sure if that's possible...

Shoot. Just ran into this after getting a new laptop (which is going to become more common with the new MacBook Pros out) @felixblaschke any guidance you can add for...

I was able to get Backstop `v4.3.2` to run on my M1 by adding the following to my config: - added `--single-process` to `engineOptions` - added `--disable-dev-shm-usage` to `engineOptions` (OPTIONAL,...

@garris for `v5.4.4` puppeteer isn't starting. Looks like it won't go into Single Threaded mode. ``` COMMAND | Executing core for "test" createBitmaps | Selected 30 of 30 scenarios. COMMAND...

I was able to build an M1 compatible Docker image by doing the following: - Add `PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true` to `npm install backstopjs` to prevent it from hitting an issue with no...

@DEfusion I have `asyncCaptureLimit: 1` and `asyncCompareLimit: 10` I occasionally get hangs after 3 or 4 full runs. No idea why. I had similar issues using stock backstop 4.3.2 and...

@cjbd [dockerman33/backstopjs:5.4.4](https://hub.docker.com/r/dockerman33/backstopjs)