Give libtextsecure its own components (with way fewer deps)
This commit is contained in:
parent
899d756469
commit
07899557dc
7 changed files with 18237 additions and 11 deletions
|
@ -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);
|
||||
});
|
||||
});
|
||||
}
|
||||
});
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue