aboutsummaryrefslogtreecommitdiffstats
path: root/test/integration/index.js
blob: 85f91d92b5dd2c4987b4d652106a6f9e9aa3fc17 (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
var fs = require('fs')
var path = require('path')
var browserify = require('browserify')
var tests = fs.readdirSync(path.join(__dirname, 'lib'))
var bundlePath = path.join(__dirname, 'bundle.js')

var b = browserify()

// Remove old bundle
try {
  fs.unlinkSync(bundlePath)

  var writeStream = fs.createWriteStream(bundlePath)

  tests.forEach(function (fileName) {
    b.add(path.join(__dirname, 'lib', fileName))
  })

  b.bundle().pipe(writeStream)
} catch (e) {
  console.error('Integration build failure', e)
}