Marcel Michelfelder

Results 28 comments of Marcel Michelfelder

Is there a way to force install everything (i.e. every removed deployment)?

@dobesv Am I using this correctly? with ```typescript await expect(rbac.can(ERole.user, EOperation.postSave)) .rejects.toBeInstanceOf(RbacProgrammaticException) .rejects.toMatchObject({ name: "RbacProgrammaticException" }); ``` or ```typescript expect(Promise.resolve(rbac.can(ERole.user, EOperation.postSave))) .rejects.toBeInstanceOf(RbacProgrammaticException) .rejects.toMatchObject({ name: "RbacProgrammaticException" }); ``` I get >...

@dobesv acutally i got that idea of chaining promises from your tests. I have your fork like so in my `package.json`: ```json "jest-chain": "git://github.com/dobesv/jest-chain#promise-support", ``` So yes, im certain that...

With this change i would not get any type-error :+1:

Just had the same problem. You'll get a Promise if you use it like this. I solved it like this ```typescript const messenger = await Messenger.create(uri, serviceName, ttl) Container .bind(Messenger)...

Looks like youre not using `ts-node` (or `ts-jest`) to execute the code. This could be related to https://github.com/evanw/esbuild/issues/412 and https://github.com/thiagobustamante/typescript-ioc/issues/77

Im experiencing the same issues. I just switched from `ts-jest` transformer to `esbuild-runner/jest` or `@swc-node/jest`. Before I switched everything worked fine, but after the switch these errors popped up for...

Having the same issue here. Your approach does give me back http://puu.sh/j2xlU/3718637a0a.png instead of http://puu.sh/j2xmT/c83dfb79f0.png

I used this code, tho: ``` javascript // var alpha = (0xff = 0) { gx = Math.abs(img_u8.data[i2)&0xff; gy = Math.abs(img_u8.data[(i2)&0xff; pix = ((gx + gy)>>1)&0xff; data_u8[i*4+0] = gx; //...

same issue - happens only for large volumes. Is there a way to increase the timeout?