class Quilt::ReactRenderable::DoNotIntegrationTestError

Public Class Methods

new() click to toggle source
Calls superclass method
# File lib/quilt_rails/react_renderable.rb, line 66
      def initialize
        super(<<~MSG.squish)
          Please don't test React views with Ruby.
          Jest and @shopify/react-testing should be used to test React components.

          If you meant to query your Rails application, please check your integration test for errors.
        MSG
      end