Results 22 comments of Oleg

Solution: change html on body 👇 ```diff query MyQuery { mdx { - html + body } } ``` And using it in code: ```tsx import { MDXRenderer } from...

@nodebotanist I think it's can be not actual in near future, because MDX plugin will get major update: https://github.com/gatsbyjs/gatsby/discussions/25068

little remark: I run grafana agent on local machine, with Core I5-8600 3.1 GHz In container (I installed htop) ![image](https://user-images.githubusercontent.com/2098777/144745481-c10b2372-125b-4cd7-b183-4e384bd14c71.png)

@rfratto thank you for answer, I don't time now for checking, but you can do it self: ```sh git pull https://github.com/Luchanso/grafana-agent-example docker-compose up docker exec -it grafana-agent bash ``` maybe...

I suggest use [puppeteer](https://github.com/GoogleChrome/puppeteer), but it's not unit-test its E2E test. You can compare screenshots like in [Codesandbox](https://hackernoon.com/how-codesandbox-uses-puppeteer-jest-to-test-sandbox-functionality-17068b3bd23b)

In first time I recommend this simple way: [react-testing-library](https://testing-library.com/docs/intro)

Yes, please pin your dependenices 🙏 We have other problem - after each packages patch update, we wait 10 - 24 hours, when our private registry pull new package versions...

@romainmenke I think one of the major reason to not pinning dependencies is project can be himself using the same dependencies, so when dependencies is pinng it can be broke...

Hey, guys, the same problem, it can be reproduce with this docker file: ```Dockerfile FROM rust:latest WORKDIR /usr/src/myapp COPY . . RUN cargo install --path . CMD ["myapp"] ``` On...