mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-05 18:23:48 +00:00
paginator refactoring and implementation into the routes
This commit is contained in:
@@ -50,7 +50,7 @@ class SetupWizardTest extends TestCase
|
||||
'name' => 'database/test.sqlite',
|
||||
'username' => 'null',
|
||||
'password' => 'null',
|
||||
])->assertStatus(204);
|
||||
])->assertStatus(200);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -76,7 +76,7 @@ class SetupWizardTest extends TestCase
|
||||
'logo_horizontal' => UploadedFile::fake()->image('fake-logo-horizontal.jpg'),
|
||||
'logo_horizontal_dark' => UploadedFile::fake()->image('fake-logo-horizontal-dark.jpg'),
|
||||
'favicon' => UploadedFile::fake()->image('fake-favicon.jpg'),
|
||||
])->assertStatus(204);
|
||||
])->assertStatus(200);
|
||||
|
||||
$this
|
||||
->assertDatabaseHas('settings', [
|
||||
|
||||
@@ -182,7 +182,7 @@ class TeamsTest extends TestCase
|
||||
|
||||
$this
|
||||
->actingAs($user)
|
||||
->getJson('/api/teams/folders/undefined')
|
||||
->getJson('/api/teams/folders/all?page=1')
|
||||
->assertOk()
|
||||
->assertJsonFragment([
|
||||
'id' => $folder->id,
|
||||
@@ -255,7 +255,7 @@ class TeamsTest extends TestCase
|
||||
|
||||
$this
|
||||
->actingAs($member)
|
||||
->getJson('/api/teams/shared-with-me/undefined')
|
||||
->getJson('/api/teams/shared-with-me/all?page=1')
|
||||
->assertOk()
|
||||
->assertJsonFragment([
|
||||
'id' => $folders[0]->id,
|
||||
|
||||
Reference in New Issue
Block a user