mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
cce8d9e360
Added new Qunit build process that will browserify the contents of `test/integration/lib` into the QUnit browser, allowing much more modular testing, including unit testing of our modules in our target browsers. Made a basic unit test file of this form for the new encryptor module, which fails miserably because I've only just begun to work with it. I've started with this blog post as a starting point, and will be adjusting it to our needs from there: http://qnimate.com/passphrase-based-encryption-using-web-cryptography-api/
22 lines
461 B
JavaScript
22 lines
461 B
JavaScript
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)
|
|
} catch (e) {}
|
|
|
|
var writeStream = fs.createWriteStream(bundlePath)
|
|
|
|
tests.forEach(function(fileName) {
|
|
b.add(path.join(__dirname, 'lib', fileName))
|
|
})
|
|
|
|
b.bundle().pipe(writeStream);
|
|
|