Sha256: e90a854ef79b7f2cb852e297b4ab9fbeba22a02bac1f20003267dca4b63da531

Contents?: true

Size: 780 Bytes

Versions: 40

Compression:

Stored size: 780 Bytes

Contents

/* test expect, describe, afterAll, beforeEach */

const { resolve } = require('path')
const { chdirTestApp, chdirCwd } = require('../utils/helpers')

chdirTestApp()

describe('Production environment', () => {
  afterAll(chdirCwd)

  describe('webpackConfig', () => {
    beforeEach(() => jest.resetModules())

    test('should use production config and environment', () => {
      process.env.RAILS_ENV = 'production'
      process.env.NODE_ENV = 'production'

      const { webpackConfig } = require('../index')

      expect(webpackConfig.output.path).toEqual(resolve('public', 'packs'))
      expect(webpackConfig.output.publicPath).toEqual('/packs/')

      expect(webpackConfig).toMatchObject({
        devtool: 'source-map',
        stats: 'normal'
      })
    })
  })
})

Version data entries

40 entries across 40 versions & 2 rubygems

Version Path
shakapacker-6.6.0 package/__tests__/production.js
shakapacker-6.5.6 package/__tests__/production.js
shakapacker-6.5.5 package/__tests__/production.js
shakapacker-6.5.4 package/__tests__/production.js
shakapacker-6.5.3 package/__tests__/production.js
shakapacker-6.5.2 package/__tests__/production.js
shakapacker-6.5.1 package/__tests__/production.js
shakapacker-6.5.0 package/__tests__/production.js
shakapacker-6.4.1 package/__tests__/production.js
shakapacker-6.4.0 package/__tests__/production.js
shakapacker-6.3.0 package/__tests__/production.js
shakapacker-6.3.0.pre.rc.1 package/__tests__/production.js
shakapacker-6.2.1 package/__tests__/production.js
shakapacker-6.2.0 package/__tests__/production.js
shakapacker-6.1.1 package/__tests__/production.js
shakapacker-6.1.0 package/__tests__/production.js
shakapacker-6.1.0.beta.0 package/__tests__/production.js
shakapacker-6.0.2 package/__tests__/production.js
shakapacker-6.0.1 package/__tests__/production.js
shakapacker-6.0.0 package/__tests__/production.js