Daniel Gluskin
Daniel Gluskin
Basic GraphQL support. Things to add in the future: - Add documentation. - Implement resolves with the example-app logic (requires to take the logic to external services). - Better Errors...
[Here](https://github.com/testjavascript/nodejs-integration-tests-best-practices/blob/81fd70a04f3027213190c30459fae84d72fe932e/various-receipes/authentication/test/auth-example-with-stub.test.js#L12) we use sinon.stub in beforeAll. This way we provide only one stub for the whole suite, which cannot be restored later. Should we always stub inside beforeEach or the...
As we arrange some tests with: `process.env.SEND_MAILS = "true";` We need to clean this value on end but we cannot simply set it to “false” as it might actually originally...
Hello, thanks for the great library. I have a small question, how can I move the viewfinder scanner rectangle? In my case, I want to lift it higher than it...
- A dockerfile according to [official Turborepo docs](https://turbo.build/repo/docs/handbook/building-your-app) - Change all internal deps to`'*'` instead to a specific version - Remove all `package-lock` files, except for root This PR doesn't...