aboutsummaryrefslogtreecommitdiffstats
path: root/test/integration/index.js
diff options
context:
space:
mode:
authorDan Finlay <dan@danfinlay.com>2016-10-13 11:03:14 +0800
committerDan Finlay <dan@danfinlay.com>2016-10-13 11:07:46 +0800
commitcce8d9e3600e8ba0ced12013b0b208fff9f9c8a8 (patch)
treeb045e8c58f074ced7b4208bc093de35b1addabb3 /test/integration/index.js
parentcd2c00a31873490c9129023abb35dd7983604b60 (diff)
downloadtangerine-wallet-browser-cce8d9e3600e8ba0ced12013b0b208fff9f9c8a8.tar.gz
tangerine-wallet-browser-cce8d9e3600e8ba0ced12013b0b208fff9f9c8a8.tar.zst
tangerine-wallet-browser-cce8d9e3600e8ba0ced12013b0b208fff9f9c8a8.zip
Began adding browser-native encryptor module
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/
Diffstat (limited to 'test/integration/index.js')
-rw-r--r--test/integration/index.js21
1 files changed, 21 insertions, 0 deletions
diff --git a/test/integration/index.js b/test/integration/index.js
new file mode 100644
index 000000000..ff6d1baf8
--- /dev/null
+++ b/test/integration/index.js
@@ -0,0 +1,21 @@
+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);
+