Sha256: efb006386fea2777f5f875cdbb761ad98620f24b95e314001dc28fe5e50cc479

Contents?: true

Size: 505 Bytes

Versions: 1

Compression:

Stored size: 505 Bytes

Contents

require "webpacker_test"

class ConfigurationTest < Minitest::Test
  def test_manifest_path
    manifest_path = File.join(File.dirname(__FILE__), "test_app/public/webpack/test", "manifest.json").to_s
    assert_equal manifest_path, WebpackerHelpers::Configuration.manifest_path.to_s
  end

  def test_output_path
    output_path = File.join(File.dirname(__FILE__), "test_app/public/webpack/test").to_s
    assert_equal output_path, WebpackerHelpers::Configuration.webpack_public_output_dir.to_s
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
webpacker_helpers-3.0.0.beta.1 test/configuration_test.rb