Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix EmailVerificationTest to pass using Uuids (#85)
Most of the solutions to use UUIDs as primary key for models relies on Eloquent events. The Breeze email verification's test fakes the Event bus before a fake user is created, so if you're going to use an event based solution for generating uuid it will fail while trying to create the user (integrity constraint on SQL). The solution should be quite easy: creating the user before start faking the event bus.
- Loading branch information