Sha256: f3289164df2a00f8d0a3b25a5617267d43bd6e1e2fcbc08a6683b8ba8be6997a

Contents?: true

Size: 1.27 KB

Versions: 7

Compression:

Stored size: 1.27 KB

Contents

# frozen_string_literal: true

# You can replace this implementation with your own for use by the
# ReactOnRails::TestHelper.ensure_assets_compiled helper
module ReactOnRails
  module TestHelper
    class WebpackAssetsCompiler
      def compile_assets
        if ReactOnRails.configuration.build_test_command.blank?
          msg = <<~MSG
            You are using the React on Rails test helper.
            Either you used:
              ReactOnRails::TestHelper.configure_rspec_to_compile_assets or
              ReactOnRails::TestHelper.ensure_assets_compiled
            but you did not specify the config.build_test_command

            React on Rails is aborting your test run

            If you wish to use the config/#{ReactOnRails::PackerUtils.packer_type}.yml compile option for tests
            them remove your call to the ReactOnRails test helper.
          MSG
          puts Rainbow(msg).red
          exit!(1)
        end

        puts "\nBuilding Webpack assets..."

        cmd = ReactOnRails::Utils.prepend_cd_node_modules_directory(
          ReactOnRails.configuration.build_test_command
        )

        ReactOnRails::Utils.invoke_and_exit_if_failed(cmd, "Error in building webpack assets!")

        puts "Completed building Webpack assets."
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
react_on_rails-14.1.1 lib/react_on_rails/test_helper/webpack_assets_compiler.rb
react_on_rails-14.1.0 lib/react_on_rails/test_helper/webpack_assets_compiler.rb
react_on_rails-14.1.0.rc.0 lib/react_on_rails/test_helper/webpack_assets_compiler.rb
react_on_rails-15.0.0.alpha.1 lib/react_on_rails/test_helper/webpack_assets_compiler.rb
react_on_rails-14.0.5 lib/react_on_rails/test_helper/webpack_assets_compiler.rb
react_on_rails-14.0.4 lib/react_on_rails/test_helper/webpack_assets_compiler.rb
react_on_rails-14.0.3 lib/react_on_rails/test_helper/webpack_assets_compiler.rb