Save workspace changes
This commit is contained in:
@@ -53,3 +53,13 @@ it('allows complete onboarding user to access profile and upload', function () {
|
||||
->get('/upload')
|
||||
->assertOk();
|
||||
});
|
||||
|
||||
it('allows legacy users with null onboarding step to continue without setup redirect', function () {
|
||||
$user = User::factory()->create([
|
||||
'onboarding_step' => null,
|
||||
]);
|
||||
|
||||
$this->actingAs($user)
|
||||
->get('/upload')
|
||||
->assertOk();
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user