Results 37 issues of Thom Wright

Looking at [these docs](https://www.apollographql.com/docs/studio/schema/schema-reporting/) I see no way to configure some basic properties of schema registration using function arguments rather than environment variables. - `APOLLO_GRAPH_ID` - `APOLLO_GRAPH_VARIANT` - `APOLLO_SERVER_USER_VERSION` -...

Chai's built-in `all.keys` assertions seem to break when I use `chai-things` - [Chai keys](http://chaijs.com/api/bdd/#keys-section) ``` js expect({a: "string", b: "string", c: "string"}).to.have.all.keys(["a", "b"]) ``` `AssertionError: expected { Object (a, b,...

bug

Fixes #24 Added two tests to confirm the behaviour for core Chai's `should.have.all.keys` works. Modified the tests for `should.all.equal` on objects, since we now defer to the original method in...

@williammartin - Dockerize repo - Use [docker-compose](https://docs.docker.com/compose/)? - Integrate with Vagrant?

enhancement
help wanted

@rolandnsharp You mentioned in #64 that the tests fail inconsistently. Is this locally, on Travis, or both? If it's only on Travis it's because of [this](http://docs.travis-ci.com/user/database-setup/#MongoDB-may-not-be-immediately-accepting-connections) which is a real...

Dependencies on: - themes.jsonresume.org - Postmark? These should probably be mocked, else tests will fail when running offline, or when the above services are down (like now...).

Hi, I'm trying to find a way to improve our monitoring around the connection pool use, specifically around pending queries. We're using Prometheus to monitor our services. Prometheus works by...

## Bug description ### Symptoms 1. GRPC requests are taking too long to time out when Kubernetes network policies are misconfigured. 2. The `connection_timeout_is_not_fatal` test takes ~75 seconds to finish....

bug

Fix for reactjs/react-art#66

`expect([[1, 2]]).to.eql([[1, 2], [3, 4]])` will **fail**. `expect([[1, 2]]).to.almost.eql([[1, 2], [3, 4]])` will **pass**. This should fail like above.