fix the expectation on the failing test.

This commit is contained in:
Arthur Cinader
2018-10-04 10:26:54 -07:00
parent 34b51f7289
commit 152ff41cf8

View File

@@ -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();
})
})