UNPKG

enzyme-page-object

Version:

A library to help write enzyme tests using the page-object pattern

21 lines (19 loc) 335 B
const path = require('path'); module.exports = { entry: './src/index.js', output: { filename: 'bundle.js', path: path.resolve(__dirname, 'dist') }, module: { rules: [ { test: /\.js$/, exclude: /node_modules/, use: [ { loader: 'babel-loader' } ] } ] } };