piotr-s-brainhub

Results 122 comments of piotr-s-brainhub

It also doesn't work: ``` const chai = require('chai'); const chaiAsPromised = require('chai-as-promised'); chai.use(chaiAsPromised); const expect = chai.expect; const error = new Error; error.foo = 123; expect(Promise.reject(error)).to.be.rejectedWith(Error).and.have.property('foo', 123); ``` I...

It works when I add `.eventually` so such a test succeeds: ``` const chai = require('chai'); const chaiAsPromised = require('chai-as-promised'); chai.use(chaiAsPromised); const expect = chai.expect; const error = new Error;...

@Ceesjansen Anyway now you can use `async/ await` so `chai-as-promised` is no longer needed.

Now it works for me. I have: ``` echo repo_token: $COVERALLS_REPO_TOKEN > ./.coveralls.yml cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js ``` I guess the error was because of not adding the repo to...

@AntaresRahman does it work for you now?

@AntaresRahman @pohsiu @ltung @mirzakhalov does the @davidrd108 solution from the previous comment work for you?

@devkrkanhaiya I answered your issue (https://github.com/brainhubeu/react-native-opencv-tutorial/issues/22).

@234146326 Thanks for reporting this. I've never run this project but I can try. For now, I'm getting: ``` ⟩ react-native run-ios error Unrecognized command "run-ios". ``` but maybe I...

@albjeremias Thanks for your suggestions. We'll improve the README when we find some resources. for me `Unzip the package.` -> `unzipped opencv archive`

@Tex2wo is your problem solved or you need any more help?