From 152ff41cf88e0dae97396264259832c60c97df72 Mon Sep 17 00:00:00 2001 From: Arthur Cinader <700572+acinader@users.noreply.github.com> Date: Thu, 4 Oct 2018 10:26:54 -0700 Subject: [PATCH] fix the expectation on the failing test. --- spec/ValidationAndPasswordsReset.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/ValidationAndPasswordsReset.spec.js b/spec/ValidationAndPasswordsReset.spec.js index 50730bcd..62dab7f0 100644 --- a/spec/ValidationAndPasswordsReset.spec.js +++ b/spec/ValidationAndPasswordsReset.spec.js @@ -952,7 +952,7 @@ describe('Custom Pages, Email Verification, Password Reset', () => { ) .then(results => { expect(results.length).toEqual(1); - expect(results[0]['_perishable_token']).toBeNull(); + expect(results[0]['_perishable_token']).toBeUndefined(); done(); }) })