Lucas Gurgel

Results 5 comments of Lucas Gurgel

When you run `AppleHealthKit.initHealthKit(options, (err, results)`, you need to pass an options object, which should contain a `read` property that contains all the stuff you want read access to. You...

Have you tried calling `authorizationStatusForType` before trying to `saveMindfulSession`? [https://github.com/terrillo/rn-apple-healthkit/blob/master/docs/authorizationStatusForType().md](https://github.com/terrillo/rn-apple-healthkit/blob/master/docs/authorizationStatusForType().md)

Interesting, I was able to access that method in a dummy app I just created. It was pretty straightforward. ```javascript HealthKit.initHealthKit(options, async (err) => { if (err) return console.log("error initializing...

Hope this helps somebody... ``` // create your config object const window = "window" const config = { // all the other stuff... plotOptions: { series: { point: { events:...

> @takumiya081 You could use `next-router-mock`. Were you able to solve this issue with `next-router-mock` ? I've tried but no luck...