mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
This reverts commit 1110287fe153bba44b8a7504611c2648b50e065f, reversing changes made to 72eb233ee953c381407f0121f76822a79753e4ee.
27 lines
640 B
JavaScript
27 lines
640 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)
|
|
}
|
|
)
|