Sébastien Dan
Sébastien Dan
@RaffysWeb's solution didn't work for me so I merely mocked the Text-Truncate component in my unit tests: ``` jest.mock('react-text-truncate', () => { return ({ text }) => {text} }) ```
Hi, I'm getting the same error now with `v0.1.41`. You can reproduce it by preparing the recipe with the following repo (all local deps get `0.0.1` version): https://github.com/novifinancial/winterfell
Can we get this reviewed by a maintainer? This is a very important feature that's missing now, and the PR has been open for months. (thanks @andreacioni for doing this!)
What's the status of this two years later? I'm looking for a way to manually pass `traceparent` as header of a frontend->server request within a custom transaction.
Taking inspiration from [here](https://github.com/elastic/apm-agent-nodejs/blob/d16e714bf1d898203038c2fa01756d112bf58ca6/lib/tracecontext/traceparent.js#L177) and from the `traceparent` values I was getting with auto-instrumentation, I successfully tested manually setting the `traceparent` to `00-${span.traceId}-${span.id}-01`, with "00" and "01" being the unknown...
@vigneshshanmugam Any chance you can share any updates on this?
The problem is probably that your tsconfig (or e.g., jest config if the problem happens when running tests) doesn't include typechains types in the ts code that it should target...
This is my first time making a request but I will. Btw I was at DrupalCon in Barcelona and attended your session, really liked your sense of humour ;)
> _Technically_ this isn't needed. There's nothing that is injected into the `Logger` class, so the `@Injectable()` here is extraneous. We can still add it for continuity, but it isn't...
A little update on the aforementioned issue: I was able to play with the options so that the embedded IPFS nodes are reachable externally: ```rust // client/offchain/src/lib.rs options.listening_addrs = vec!["/ip4/0.0.0.0/tcp/0".parse().unwrap()];...