Give libtextsecure its own components (with way fewer deps)

This commit is contained in:
Matt Corallo 2015-01-13 15:23:11 -10:00
parent 899d756469
commit 07899557dc
7 changed files with 18237 additions and 11 deletions

View file

@ -219,14 +219,14 @@ describe('Protocol', function() {
};
describe("test vectors", function() {
_.each(axolotlTestVectors, function(t, i) {
it(t.name, function(done) {
for (var i in axolotlTestVectors) {
it(axolotlTestVectors[i].name, function(done) {
localStorage.clear();
return runAxolotlTest(t.vectors).then(function(res) {
return runAxolotlTest(axolotlTestVectors[i].vectors).then(function(res) {
assert(res);
}).then(done).catch(done);
});
});
}
});
});
});