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

Use testbench WithConfig attribute to set app.debug #1138

Merged
merged 1 commit into from
Jun 4, 2024
Merged

Use testbench WithConfig attribute to set app.debug #1138

merged 1 commit into from
Jun 4, 2024

Conversation

mfn
Copy link
Collaborator

@mfn mfn commented Jun 4, 2024

Summary

This fixes the failing test testNoExplicitContentType (#1137)

We do set it in \Rebing\GraphQL\Tests\TestCase::getEnvironmentSetUp which is executed in the this test, but too late.

By the time \Illuminate\Foundation\Providers\FoundationServiceProvider::registerExceptionRenderer is called, the getEnvironmentSetUp() is not yet called and therefore the debug mode being enabled is not realized.

But other parts in the framework later "see" the enabled debug mode, and due to this mismatch the framework expects registered classes which however arent.


Type of change:

  • Bug fix (non-breaking change which fixes an issue)
  • New feature (non-breaking change which adds functionality)
  • Breaking change (fix or feature that would cause existing functionality to not work as expected)
  • This change requires a documentation update
  • Misc. change (internal, infrastructure, maintenance, etc.)

Checklist:

  • Existing tests have been adapted and/or new tests have been added
  • Add a CHANGELOG.md entry
  • Update the README.md
  • Code style has been fixed via composer fix-style

This fixes the failing test `testNoExplicitContentType`

We do set it in `\Rebing\GraphQL\Tests\TestCase::getEnvironmentSetUp`
which _is_ executed in the this test, but too late.

By the time `\Illuminate\Foundation\Providers\FoundationServiceProvider::registerExceptionRenderer` is called,
the `getEnvironmentSetUp()` is not yet called and therefore the debug
mode being enabled is not realized.

But other parts in the framework later "see" the enabled debug mode,
and due to this mismatch the framework expects registered classes
which however arent.
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

Successfully merging this pull request may close these issues.

1 participant