summaryrefslogtreecommitdiff
path: root/spec/session_spec.js
diff options
context:
space:
mode:
Diffstat (limited to 'spec/session_spec.js')
-rw-r--r--spec/session_spec.js8
1 files changed, 0 insertions, 8 deletions
diff --git a/spec/session_spec.js b/spec/session_spec.js
index acfe0be..5802283 100644
--- a/spec/session_spec.js
+++ b/spec/session_spec.js
@@ -36,14 +36,6 @@ describe("Session", function() {
expect(session.getI()).toBe(compare.username);
});
- it("calculates the proper verifier", function() {
- expect(session.getV(compare.salt).toString(16)).toBe(compare.v);
- });
-
- it("calculates the proper A", function() {
- expect(session.calculateAndSetA(compare.a)).toBe(compare.aa);
- });
-
it("calculates the proper M", function() {
session.calculateAndSetA(compare.a);
session.calculations(compare.salt, compare.bb);