diff options
author | Dan Finlay <dan@danfinlay.com> | 2016-10-13 11:03:14 +0800 |
---|---|---|
committer | Dan Finlay <dan@danfinlay.com> | 2016-10-13 11:07:46 +0800 |
commit | cce8d9e3600e8ba0ced12013b0b208fff9f9c8a8 (patch) | |
tree | b045e8c58f074ced7b4208bc093de35b1addabb3 /package.json | |
parent | cd2c00a31873490c9129023abb35dd7983604b60 (diff) | |
download | tangerine-wallet-browser-cce8d9e3600e8ba0ced12013b0b208fff9f9c8a8.tar tangerine-wallet-browser-cce8d9e3600e8ba0ced12013b0b208fff9f9c8a8.tar.gz tangerine-wallet-browser-cce8d9e3600e8ba0ced12013b0b208fff9f9c8a8.tar.bz2 tangerine-wallet-browser-cce8d9e3600e8ba0ced12013b0b208fff9f9c8a8.tar.lz tangerine-wallet-browser-cce8d9e3600e8ba0ced12013b0b208fff9f9c8a8.tar.xz 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 'package.json')
-rw-r--r-- | package.json | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package.json b/package.json index 273117f8a..a4f234735 100644 --- a/package.json +++ b/package.json @@ -8,6 +8,7 @@ "lint": "gulp lint", "dev": "gulp dev", "dist": "gulp dist", + "buildCiUnits": "node test/integration/index.js", "test": "npm run fastTest && npm run ci && npm run lint", "fastTest": "mocha --require test/helper.js --compilers js:babel-register --recursive \"test/unit/**/*.js\"", "watch": "mocha watch --compilers js:babel-register --recursive \"test/unit/**/*.js\"", @@ -15,7 +16,7 @@ "mock": "beefy mock-dev.js:bundle.js --live --open --index=./development/index.html --cwd ./", "buildMock": "browserify ./mock-dev.js -o ./development/bundle.js", "testem": "npm run buildMock && testem", - "ci": "npm run buildMock && testem ci -P 2", + "ci": "npm run buildMock && npm run buildCiUnits && testem ci -P 2", "announce": "node development/announcer.js" }, "browserify": { |