aboutsummaryrefslogtreecommitdiffstats
path: root/test/integration/index.js
blob: 144303dbba1c063636cae18becd6f0c573386dc7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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)
  }
)