generated from spatie/package-skeleton-laravel
-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
20ad6ba
commit 582f9d9
Showing
12 changed files
with
28 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"version":"pest_2.34.1","defects":[],"times":{"P\\Tests\\LoginLinkComponentTest::__pest_evaluable_it_can_render_a_login_link_with_a_specific_guard":0.001,"P\\Tests\\LoginLinkComponentTest::__pest_evaluable_it_can_render_a_login_link_with_a_custom_key":0.001,"P\\Tests\\LoginLinkComponentTest::__pest_evaluable_it_can_render_a_login_link_with_specific_css_classes":0,"P\\Tests\\LoginLinkComponentTest::__pest_evaluable_it_can_render_a_login_link_with_custom_user_attributes":0.001,"P\\Tests\\LoginLinkComponentTest::__pest_evaluable_it_can_render_a_login_link_with_a_custom_label":0,"P\\Tests\\LoginLinkComponentTest::__pest_evaluable_it_can_render_a_login_link_with_a_specific_redirect_url":0.001,"P\\Tests\\LoginLinkComponentTest::__pest_evaluable_it_can_render_a_login_link":0.007,"P\\Tests\\LoginLinkComponentTest::__pest_evaluable_it_can_render_a_login_link_with_a_custom_email":0,"P\\Tests\\LoginLinkControllerTest::__pest_evaluable_it_can_will_not_create_a_user_if_automatic_creation_is_turned_off":0.004,"P\\Tests\\LoginLinkControllerTest::__pest_evaluable_it_can_create_a_user_with_specific_id":0.061,"P\\Tests\\LoginLinkControllerTest::__pest_evaluable_it_will_throw_an_exception_when_a_user_model_is_not_configured":0.002,"P\\Tests\\LoginLinkControllerTest::__pest_evaluable_it_will_create_and_login_a_user_on_a_specific_guard":0.061,"P\\Tests\\LoginLinkControllerTest::__pest_evaluable_it_will_throw_an_exception_when_no_user_class_can_be_determined":0.001,"P\\Tests\\LoginLinkControllerTest::__pest_evaluable_it_can_create_login_an_existing_user_with_specific_attributes":0.061,"P\\Tests\\LoginLinkControllerTest::__pest_evaluable_it_will_not_create_a_new_user_if_one_already_exists":0.062,"P\\Tests\\LoginLinkControllerTest::__pest_evaluable_it_can_login_an_existing_user_with_a_specific_email":0.061,"P\\Tests\\LoginLinkControllerTest::__pest_evaluable_it_will_not_work_in_the_wrong_environment":0.001,"P\\Tests\\LoginLinkControllerTest::__pest_evaluable_it_will_create_and_login_a_user":0.082,"P\\Tests\\LoginLinkControllerTest::__pest_evaluable_it_can_create_a_user_with_both_email_and_custom_attributes":0.061,"P\\Tests\\LoginLinkControllerTest::__pest_evaluable_it_can_create_a_user_with_specific_email":0.061,"P\\Tests\\LoginLinkControllerTest::__pest_evaluable_it_can_login_an_existing_user_with_a_specific_id":0.062,"P\\Tests\\LoginLinkControllerTest::__pest_evaluable_it_can_create_and_login_a_user_with_specific_attributes":0.061,"P\\Tests\\LoginLinkControllerTest::__pest_evaluable_it_can_redirect_to_a_specific_url":0.061,"P\\Tests\\LoginLinkControllerTest::__pest_evaluable_it_will_redirect_to_the_configured_route_name_by_default":0.061}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,16 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<phpunit | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd" | ||
backupGlobals="false" | ||
backupStaticAttributes="false" | ||
bootstrap="vendor/autoload.php" | ||
colors="true" | ||
convertErrorsToExceptions="true" | ||
convertNoticesToExceptions="true" | ||
convertWarningsToExceptions="true" | ||
processIsolation="false" | ||
stopOnFailure="false" | ||
executionOrder="random" | ||
failOnWarning="true" | ||
failOnRisky="true" | ||
failOnEmptyTestSuite="true" | ||
beStrictAboutOutputDuringTests="true" | ||
verbose="true" | ||
> | ||
<testsuites> | ||
<testsuite name="Spatie Test Suite"> | ||
<directory>tests</directory> | ||
</testsuite> | ||
</testsuites> | ||
<coverage> | ||
<include> | ||
<directory suffix=".php">./src</directory> | ||
</include> | ||
<report> | ||
<html outputDirectory="build/coverage"/> | ||
<text outputFile="build/coverage.txt"/> | ||
<clover outputFile="build/logs/clover.xml"/> | ||
</report> | ||
</coverage> | ||
<logging> | ||
<junit outputFile="build/report.junit.xml"/> | ||
</logging> | ||
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" backupGlobals="false" bootstrap="vendor/autoload.php" colors="true" processIsolation="false" stopOnFailure="false" executionOrder="random" failOnWarning="true" failOnRisky="true" failOnEmptyTestSuite="true" beStrictAboutOutputDuringTests="true" cacheDirectory=".phpunit.cache" backupStaticProperties="false"> | ||
<testsuites> | ||
<testsuite name="Spatie Test Suite"> | ||
<directory>tests</directory> | ||
</testsuite> | ||
</testsuites> | ||
<logging> | ||
<junit outputFile="build/report.junit.xml"/> | ||
</logging> | ||
<source> | ||
<include> | ||
<directory suffix=".php">./src</directory> | ||
</include> | ||
</source> | ||
</phpunit> |
2 changes: 1 addition & 1 deletion
2
tests/__snapshots__/LoginLinkComponentTest__it_can_render_a_login_link__1.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...napshots__/LoginLinkComponentTest__it_can_render_a_login_link_with_a_custom_email__1.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
..._snapshots__/LoginLinkComponentTest__it_can_render_a_login_link_with_a_custom_key__1.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...napshots__/LoginLinkComponentTest__it_can_render_a_login_link_with_a_custom_label__1.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...pshots__/LoginLinkComponentTest__it_can_render_a_login_link_with_a_specific_guard__1.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
..._/LoginLinkComponentTest__it_can_render_a_login_link_with_a_specific_redirect_url__1.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...__/LoginLinkComponentTest__it_can_render_a_login_link_with_custom_user_attributes__1.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...ts__/LoginLinkComponentTest__it_can_render_a_login_link_with_specific_css_classes__1.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters