Skip to content

Commit

Permalink
ci: Skip v1 api tests
Browse files Browse the repository at this point in the history
  • Loading branch information
octfx committed May 4, 2024
1 parent f189551 commit ecc4759
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions tests/Feature/Controller/Api/V1/ApiTestCase.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<?php declare(strict_types=1);
<?php

declare(strict_types=1);

namespace Tests\Feature\Controller\Api\V1;

Expand All @@ -10,6 +12,12 @@
*/
class ApiTestCase extends TestCase
{
public static function setUpBeforeClass(): void
{
parent::setUpBeforeClass();
self::markTestSkipped();
}

/**
* Default German Translation from Factories
*/
Expand Down Expand Up @@ -40,7 +48,6 @@ class ApiTestCase extends TestCase
*/
protected $structure = [];


/**
* Index Method Tests
*/
Expand All @@ -67,7 +74,7 @@ public function testIndexPaginatedDefault(): void
/**
* Test Index with no Pagination
*
* @param int $allCount Count of Resources in DB
* @param int $allCount Count of Resources in DB
*/
public function testIndexAll(int $allCount): void
{
Expand All @@ -94,7 +101,7 @@ public function testIndexAll(int $allCount): void
/**
* Test Index with custom Pagination (limit)
*
* @param int $limit The Pagination Limit
* @param int $limit The Pagination Limit
*/
public function testIndexPaginatedCustom(int $limit)
{
Expand All @@ -121,7 +128,7 @@ public function testIndexPaginatedCustom(int $limit)
/**
* Test Index with invalid Pagination (limit)
*
* @param int $limit The Pagination Limit
* @param int $limit The Pagination Limit
*/
public function testIndexInvalidLimit(int $limit)
{
Expand Down

0 comments on commit ecc4759

Please sign in to comment.