Courses

Testing in Laravel 12 For Beginners

Pest Grouping Tests

Summary of this lesson:
- Implementing test groups in Pest
- Organizing tests by groups and folders
- Using group filters to run specific tests
- Configuring group settings in Pest.php

Pest allows to set groups for tests. Group can be set for a folder, a file, or a test. Multiple groups can also be assigned.

The group() function is used to add a group. Here is an example of a specific test.

tests/Feature/ProductsTest.php:

test('api product store successful', function () {
$product = [
'name' => 'Product 1',
'price' => 123
];
 
postJson('/api/products', $product)
->assertStatus(201)
->assertJson($product);
})->group('api');
 
test('api product invalid store returns error', function () {
$product = [
'name' => '',
'price' => 123
];
 
postJson('/api/products', $product)
->assertStatus(422);
})->group('api');

When running tests, the flag --group should be used with the group name, to filter tests by a group.

We added API tests to the same ProductsTest file in this course. But, if we moved all API tests to the tests/Feature/Api folder, we could...

The full lesson is only for Premium Members.
Want to access all 25 lessons of this course? (90 min read)

You also get:

  • 75 courses
  • Premium tutorials
  • Access to repositories
  • Private Discord