mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
92971d3c87
* Update eslint-plugin-import version * Convert JS files to use ESM * Update ESLint rules to check imports * Fix test:unit:global command env * Cleanup mock-dev script
30 lines
655 B
JavaScript
30 lines
655 B
JavaScript
const fs = require('fs')
|
|
const path = require('path')
|
|
const pump = require('pump')
|
|
const browserify = require('browserify')
|
|
|
|
const tests = fs.readdirSync(path.join(__dirname, 'lib'))
|
|
const bundlePath = path.join(__dirname, 'bundle.js')
|
|
|
|
const b = browserify()
|
|
|
|
const writeStream = fs.createWriteStream(bundlePath)
|
|
|
|
tests.forEach(function (fileName) {
|
|
const filePath = path.join(__dirname, 'lib', fileName)
|
|
console.log(`bundling test "${filePath}"`)
|
|
b.add(filePath)
|
|
})
|
|
|
|
pump(
|
|
b.bundle(),
|
|
writeStream,
|
|
(err) => {
|
|
if (err) {
|
|
throw err
|
|
}
|
|
console.log(`Integration test build completed: "${bundlePath}"`)
|
|
process.exit(0)
|
|
}
|
|
)
|