seed([ UserSeeder::class, TeamSeeder::class, PrivateKeySeeder::class, ServerSeeder::class, ProjectSeeder::class, StandaloneDockerSeeder::class, GithubAppSeeder::class, ApplicationSeeder::class, ]); $nixpacksExample = Application::where('uuid', 'nodejs')->first(); expect($nixpacksExample) ->not->toBeNull() ->and($nixpacksExample->name)->toBe('NodeJS Fastify Example') ->and($nixpacksExample->build_pack)->toBe('nixpacks') ->and($nixpacksExample->base_directory)->toBe('/nodejs') ->and($nixpacksExample->ports_exposes)->toBe('3000'); expect(Application::query()->where('build_pack', 'railpack')->exists())->toBeFalse(); expect(Application::query()->whereIn('uuid', ['railpack-nodejs', 'railpack-static'])->exists())->toBeFalse(); });