Sha256: 074dbbd6ea945ab22c52db07ad838ecb83adc35ae022beb1c0649edcf811088c
Contents?: true
Size: 812 Bytes
Versions: 40
Compression:
Stored size: 812 Bytes
Contents
/* test expect, describe, afterAll, beforeEach */ const { resolve } = require('path') const { chdirTestApp, chdirCwd } = require('../utils/helpers') chdirTestApp() describe('Custom environment', () => { afterAll(chdirCwd) describe('webpackConfig', () => { beforeEach(() => jest.resetModules()) test('should use staging config and default production environment', () => { process.env.RAILS_ENV = 'staging' delete process.env.NODE_ENV const { webpackConfig } = require('../index') expect(webpackConfig.output.path).toEqual( resolve('public', 'packs-staging') ) expect(webpackConfig.output.publicPath).toEqual('/packs-staging/') expect(webpackConfig).toMatchObject({ devtool: 'source-map', stats: 'normal' }) }) }) })
Version data entries
40 entries across 40 versions & 2 rubygems