Sha256: a31d24e304440628a9a9bfa299e9c4f2e4aa53ee315a9f94f9a2b78e196ecdcb

Contents?: true

Size: 826 Bytes

Versions: 66

Compression:

Stored size: 826 Bytes

Contents

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

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

chdirTestApp()

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

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

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

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

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

Version data entries

66 entries across 65 versions & 12 rubygems

Version Path
cm-admin-1.5.22 vendor/bundle/ruby/3.3.0/gems/webpacker-5.4.4/package/__tests__/staging.js
cm-admin-1.5.21 vendor/bundle/ruby/3.3.0/gems/webpacker-5.4.4/package/__tests__/staging.js
cm-admin-1.5.20 vendor/bundle/ruby/3.3.0/gems/webpacker-5.4.4/package/__tests__/staging.js
optimacms-0.1.61 spec/dummy/node_modules/@rails/webpacker/package/__tests__/staging.js
jetpacker-0.7.0 package/__tests__/staging.js
webpacker-5.4.4 package/__tests__/staging.js
jetpacker-0.6.0 package/__tests__/staging.js
disco_app-0.18.0 test/dummy/node_modules/@rails/webpacker/package/__tests__/staging.js
disco_app-0.18.2 test/dummy/node_modules/@rails/webpacker/package/__tests__/staging.js
disco_app-0.16.1 test/dummy/node_modules/@rails/webpacker/package/__tests__/staging.js
disco_app-0.15.2 test/dummy/node_modules/@rails/webpacker/package/__tests__/staging.js
disco_app-0.18.4 test/dummy/node_modules/@rails/webpacker/package/__tests__/staging.js
disco_app-0.18.1 test/dummy/node_modules/@rails/webpacker/package/__tests__/staging.js
disco_app-0.12.7.pre.puma.pre.3 test/dummy/node_modules/@rails/webpacker/package/__tests__/staging.js
disco_app-0.14.0 test/dummy/node_modules/@rails/webpacker/package/__tests__/staging.js
disco_app-0.13.6.pre.puma.pre.3 test/dummy/node_modules/@rails/webpacker/package/__tests__/staging.js
webpacker-5.4.3 package/__tests__/staging.js
webpacker-5.4.2 package/__tests__/staging.js
webpacker-5.4.1 package/__tests__/staging.js
webpacker-5.4.0 package/__tests__/staging.js