Lee Bousfield

Results 83 comments of Lee Bousfield

Yes, there's `vec!` and `format_args!`, both using snake case instead of pascal case. Edit: oops, misunderstood the issue

There are some working examples in the tests: https://github.com/PlasmaPower/assert-request/blob/master/test/integration.js But yeah, we do need more examples.

Oh, and with the error you're getting, make sure your tests don't take the "done" argument. If they take an argument, then the test framework will ignore the returned promise.

`.header` now has support for `Set-Cookie` (it didn't before as it was an array). A cookies mixin might still be helpful, but I think that this change makes checking cookies...

For Android, all the APIs are available through Java of course, and for this they're all in the `Context` object. I'm not sure if we can access this through Rust,...

Maybe, there's no cache dir though of course. Also, we've got the problem of getting the Activity as you mentioned, we wouldn't be the ones setting up the app.

Overriding the chain ID is intentional to prevent replaying transactions back to the real network, but you can set `--networkid 1` to keep it the same as mainnet. That said,...

Are there plans to add output streaming in the near future?

Maybe just deprecate it for now? Koa v2 is pretty far into its final stages.

I don't like it because I often use redirections like `ctx.redirect('edit')` if the user is at `/example-page/view`. I could easily see `ctx.redirect('back')` causing a lot of confusion.