Sha256: 78f123bd77d626b0059049c9bb9983d866b18d353fed603d4c8dcf045c4d2698

Contents?: true

Size: 809 Bytes

Versions: 66

Compression:

Stored size: 809 Bytes

Contents

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

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

chdirTestApp()

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

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

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

      const { environment } = require('../index')
      const config = environment.toWebpackConfig()

      expect(config.output.path).toEqual(resolve('public', 'packs'))
      expect(config.output.publicPath).toEqual('/packs/')
      expect(config).toMatchObject({
        devtool: 'source-map',
        stats: 'normal'
      })
    })
  })
})

Version data entries

66 entries across 65 versions & 12 rubygems

Version Path
webpacker-4.0.4 package/__tests__/production.js
webpacker-4.0.3 package/__tests__/production.js
webpacker-4.0.2 package/__tests__/production.js
webpacker-4.0.1 package/__tests__/production.js
webpacker-4.0.0 package/__tests__/production.js
webpacker-4.0.0.rc.8 package/__tests__/production.js