Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Handle http response #1112

Open
skrskr opened this issue Mar 10, 2024 · 1 comment
Open

Handle http response #1112

skrskr opened this issue Mar 10, 2024 · 1 comment

Comments

@skrskr
Copy link

skrskr commented Mar 10, 2024

I'm tring to test api using pest and i'm looking for alternative functions for assertOk(), assertJsonStructure

  $response->assertOk()->assertJsonStructure([
      'data' => [
          'event',
      ],
      'message',
  ]);

I used expect()->extend()

expect()->extend('toBeOk', function () {
    return $this->toBe(Response::HTTP_OK);
});

If there is any functions to handle this directly in pest ?
I did some search on docs but couldn't find it.

@jwalton512
Copy link

Not directly in pest, but this pest plugin adds some nice expectations for working with Laravel and Pest.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants