Rost Myshkin

Results 9 comments of Rost Myshkin

SOLUTION THAT SHOULD WORK FOR ALL: test for array length: ``` $scope.myevents = function(start, end, timezone, callback) { if($scope.events.length === 0) { $http.get('/api/v1/resource').then(function(response) { angular.forEach(response.data, function(event,key){ for(var i = 0...

probably a better question is - why aren't you using `return request` ?

@testerez where would u even call `registerScreenshotReporter` ?

is this how your jest.config.js file looks @testerez? ``` setupFilesAfterEnv: [ "/test/e2e/methods/common/screenshot.js" ] ``` how would this call the `registerScreenshotReporter` though?

forked and ran `git log` ``` commit a205b28be856ee7a15850bd8ada719d81e09891e Author: Stephan Schneider Date: Mon Sep 2 10:38:34 2019 +0300 fix: test field key to start with 'group[' Fixes #47 BREAKING CHANGE:...

I can't push to your repo directly even if I reset my origin to point to the original repo ``` remote: Permission to benjaminhoffman/gatsby-plugin-mailchimp.git denied to rostgoat. fatal: unable to...

> django-allauth==0.50.0 Yea this worked for me. Specifically, the following: ```py from dj_rest_auth.registration.views import SocialLoginView from allauth.socialaccount.providers.google.views import GoogleOAuth2Adapter from allauth.socialaccount.providers.oauth2.client import OAuth2Client class GoogleLogin(SocialLoginView): adapter_class = GoogleOAuth2Adapter callback_url =...

@StephenGrider do you know why this might be an issue? you didn't seem to have this error in the tutorial and I double checked your code in the repo to...

looks like the error is thrown inside the try block in `surveyRoutes`, in the `await mailer.send()` line.. ![image](https://user-images.githubusercontent.com/22672124/40889866-97f35894-6722-11e8-8826-82850eed0894.png) console: ![image](https://user-images.githubusercontent.com/22672124/40889873-b4a5055a-6722-11e8-8e22-06d7a3bf43d5.png) removing `await` from that line allows me to see all...