We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71c4759 commit 083f2f3Copy full SHA for 083f2f3
2 files changed
composer.json
@@ -62,7 +62,6 @@
62
"test:lint": "pint",
63
"test": [
64
"@test:type",
65
- "@test:unit",
66
"@test:lint"
67
]
68
},
tests/Setup.php
@@ -1,4 +1,6 @@
1
-<?php declare(strict_types=1);
+<?php
2
+
3
+declare(strict_types=1);
4
5
use PHPUnit\Framework\Attributes\CoversClass;
6
use PHPUnit\Framework\Attributes\Test;
@@ -9,7 +11,7 @@
9
11
class Setup extends TestCase
10
12
{
13
#[Test]
- public function testConstructorSetsUrlAndApiKey(): void
14
+ public function test_constructor_sets_url_and_api_key(): void
15
16
$url = 'https://test.supabase.io';
17
$apiKey = 'test-api-key';
0 commit comments