Browse Source

Update tests

Daniel Supernault 2 năm trước cách đây
mục cha
commit
4fa1f2d1e7
1 tập tin đã thay đổi với 0 bổ sung19 xóa
  1. 0 19
      tests/Feature/InstalledTest.php

+ 0 - 19
tests/Feature/InstalledTest.php

@@ -1,19 +0,0 @@
-<?php
-
-namespace Tests\Feature;
-
-use Tests\TestCase;
-
-class InstalledTest extends TestCase
-{
-    /** @test */
-    public function nodeinfo_api(): void
-    {
-        $response = $this->get('/.well-known/nodeinfo');
-        $response->assertJson([
-            'links' => [
-                ['rel' => 'http://nodeinfo.diaspora.software/ns/schema/2.0'],
-            ],
-        ]);
-    }
-}