This repository has been archived by the owner on Apr 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* wip(Leaner Tests): Initial effort * ci(Leaner Test): Fixes incorrect ENV Variable for Project base path * fix(Leaner Tests): Fixes bad substitution on Travis CI \ * CI(Travis): Fixes scripts folder structures. Adds decouple feature by delegating travis tasks to bash functions. CI(Travis): Removes 'bash -e -x' prefix on scripts invocation. CI(Travis): Adds missing change directory * CI(Travis): Changes endpoint from '/jsonapi' to '/api' in test files * CI(Travis): Changes 'node' expected resource to 'node--tutorial' inside test. * CI(Travis): Downgrade PHPUnit Version * CI(Travis): Reverts a few files, leverage composer run-script instead of running scripts directly. Brings back the .env file. * GIT(Ignore): Ignore .env.local file * Run phpcbf * fix(Config): Remove unnecessary files
- Loading branch information
Showing
23 changed files
with
210 additions
and
2,403 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
WEB_HOST=127.0.0.1 | ||
WEB_PORT=8888 | ||
WEB_PORT=8888 |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -6,5 +6,5 @@ | |
/themes/infinite/ | ||
.DS_Store | ||
composer.lock | ||
.env.local | ||
/tests/reports | ||
.env.local |
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
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,16 +1,17 @@ | ||
features: | ||
node_user_picture: 1 | ||
comment_user_picture: 1 | ||
comment_user_verification: 1 | ||
favicon: 1 | ||
logo: | ||
use_default: 0 | ||
path: profiles/contrib/contenta_jsonapi/modules/contenta_enhancements/logo.svg | ||
favicon: | ||
use_default: 0 | ||
use_default: false | ||
path: profiles/contrib/contenta_jsonapi/modules/contenta_enhancements/favicon.ico | ||
mimetype: image/vnd.microsoft.icon | ||
material_admin_node_actions: 0 | ||
material_admin_message_length: '88' | ||
_core: | ||
default_config_hash: 5_yz7HdXL2SBVGN_T99xcCs6PiGxgVfcXwQD-E8s-i4 | ||
features: | ||
comment_user_picture: true | ||
comment_user_verification: true | ||
favicon: true | ||
node_user_picture: false | ||
logo: | ||
path: profiles/contrib/contenta_jsonapi/modules/contenta_enhancements/logo.svg | ||
use_default: false | ||
material_admin_node_actions: false | ||
material_admin_message_length: 88 | ||
material_admin_portal_login: true | ||
material_admin_jqueryui_dialog_background: true | ||
material_admin_jqueryui_dialog_close: true |
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
4 changes: 0 additions & 4 deletions
4
modules/recipes_magazin_contenta/config/install/jsonapi_extras.settings.yml
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,5 +1 @@ | ||
path_prefix: api | ||
dependencies: | ||
enforced: | ||
module: | ||
- recipes_magazin_contenta |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,25 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<phpunit | ||
convertErrorsToExceptions="true" | ||
colors="true" | ||
convertWarningsToExceptions="true" | ||
forceCoversAnnotation="false" | ||
stopOnFailure="true" | ||
> | ||
<php> | ||
<ini name="memory_limit" value="-1" /> | ||
<env name="WEB_HOST" value="127.0.0.1" /> | ||
<env name="WEB_HOST" value="8888" /> | ||
|
||
</php> | ||
<testsuites> | ||
<testsuite name="ContentaFunctional"> | ||
<directory suffix="Test.php">tests/src/Functional/</directory> | ||
</testsuite> | ||
</testsuites> | ||
<filter> | ||
<whitelist> | ||
<directory>tests/src/</directory> | ||
</whitelist> | ||
</filter> | ||
</phpunit> |
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
Oops, something went wrong.