Lorenz Kitzmann
Lorenz Kitzmann
I have the same issue, but only when running the whole test suite on linux. Running single tests and the whole suite works fine on macOS. Did you find a...
Update: This can be fixed with jest setupFiles, as described here https://github.com/kutlugsahin/smooth-dnd/issues/36
@ahmadsholehin I have the same issue, but only when running the whole test suite on linux. Running single tests and the whole suite works fine on macOS. Did you find...
Update: This can be fixed with jest setupFiles, as described here https://github.com/kutlugsahin/smooth-dnd/issues/36
FYI I am using this workaround for the time being: ```ruby # config/initializers/sorcery_workaround_for_redirect_back_or_to.rb module Sorcery module Controller module InstanceMethods define_method :sorcery_redirect_back_or_to, instance_method(:redirect_back_or_to) remove_method :redirect_back_or_to end end end ``` And then...
@ndbroadbent Just an idea: I recently found https://direnv.net/, which is a more general solution to the same problem and should fix your problem as well.