-
-
Notifications
You must be signed in to change notification settings - Fork 131
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #337 from kidunot89/feature/some-node-interfaces-s…
…upport Support for some node interfaces added to the product and order models.
- Loading branch information
Showing
78 changed files
with
2,228 additions
and
1,412 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
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,88 +1,89 @@ | ||
paths: | ||
tests: '%TESTS_DIR%' | ||
output: '%TESTS_OUTPUT%' | ||
data: '%TESTS_DATA%' | ||
support: '%TESTS_SUPPORT%' | ||
envs: '%TESTS_ENVS%' | ||
tests: '%TESTS_DIR%' | ||
output: '%TESTS_OUTPUT%' | ||
data: '%TESTS_DATA%' | ||
support: '%TESTS_SUPPORT%' | ||
envs: '%TESTS_ENVS%' | ||
params: | ||
- env | ||
- .env.dist | ||
- env | ||
- .env.dist | ||
actor_suffix: Tester | ||
settings: | ||
colors: true | ||
memory_limit: 1024M | ||
colors: true | ||
memory_limit: 1024M | ||
coverage: | ||
enabled: true | ||
remote: false | ||
c3_url: '%WP_URL%/wp-content/plugins/wp-graphql-woocommerce/wp-graphql-woocommerce.php' | ||
include: | ||
- includes/* | ||
exclude: | ||
- wp-graphql-woocommerce.php | ||
- access-functions.php | ||
- class-inflect.php | ||
- vendor/* | ||
show_only_summary: false | ||
enabled: true | ||
remote: false | ||
c3_url: '%WP_URL%/wp-content/plugins/wp-graphql-woocommerce/wp-graphql-woocommerce.php' | ||
include: | ||
- includes/* | ||
exclude: | ||
- wp-graphql-woocommerce.php | ||
- access-functions.php | ||
- class-inflect.php | ||
- vendor/* | ||
show_only_summary: false | ||
extensions: | ||
enabled: | ||
- Codeception\Extension\RunFailed | ||
commands: | ||
- Codeception\Command\GenerateWPUnit | ||
- Codeception\Command\GenerateWPRestApi | ||
- Codeception\Command\GenerateWPRestController | ||
- Codeception\Command\GenerateWPRestPostTypeController | ||
- Codeception\Command\GenerateWPAjax | ||
- Codeception\Command\GenerateWPCanonical | ||
- Codeception\Command\GenerateWPXMLRPC | ||
enabled: | ||
- Codeception\Extension\RunFailed | ||
commands: | ||
- Codeception\Command\GenerateWPUnit | ||
- Codeception\Command\GenerateWPRestApi | ||
- Codeception\Command\GenerateWPRestController | ||
- Codeception\Command\GenerateWPRestPostTypeController | ||
- Codeception\Command\GenerateWPAjax | ||
- Codeception\Command\GenerateWPCanonical | ||
- Codeception\Command\GenerateWPXMLRPC | ||
modules: | ||
config: | ||
WPDb: | ||
dsn: 'mysql:host=%DB_HOST%;dbname=%DB_NAME%' | ||
user: '%DB_USER%' | ||
password: '%DB_PASSWORD%' | ||
populator: 'mysql -u $user -p$password -h $host $dbname < $dump' | ||
dump: 'tests/_data/dump.sql' | ||
populate: true | ||
cleanup: true | ||
waitlock: 0 | ||
url: '%WP_URL%' | ||
urlReplacement: true | ||
tablePrefix: '%WP_TABLE_PREFIX%' | ||
WPBrowser: | ||
url: '%WP_URL%' | ||
wpRootFolder: '%WP_ROOT_FOLDER%' | ||
adminUsername: '%ADMIN_USERNAME%' | ||
adminPassword: '%ADMIN_PASSWORD%' | ||
adminPath: '/wp-admin' | ||
REST: | ||
depends: WPBrowser | ||
url: '%WP_URL%' | ||
WPFilesystem: | ||
wpRootFolder: '%WP_ROOT_FOLDER%' | ||
plugins: '/wp-content/plugins' | ||
mu-plugins: '/wp-content/mu-plugins' | ||
themes: '/wp-content/themes' | ||
uploads: '/wp-content/uploads' | ||
WPLoader: | ||
wpRootFolder: '%WP_ROOT_FOLDER%' | ||
dbName: '%DB_NAME%' | ||
dbHost: '%DB_HOST%' | ||
dbUser: '%DB_USER%' | ||
dbPassword: '%DB_PASSWORD%' | ||
tablePrefix: '%WP_TABLE_PREFIX%' | ||
domain: '%WP_DOMAIN%' | ||
adminEmail: '%ADMIN_EMAIL%' | ||
title: 'Test' | ||
plugins: | ||
- woocommerce/woocommerce.php | ||
- woocommerce-gateway-stripe/woocommerce-gateway-stripe.php | ||
- wp-graphql/wp-graphql.php | ||
- wp-graphql-jwt-authentication/wp-graphql-jwt-authentication.php | ||
- wp-graphql-woocommerce/wp-graphql-woocommerce.php | ||
activatePlugins: | ||
- woocommerce/woocommerce.php | ||
- woocommerce-gateway-stripe/woocommerce-gateway-stripe.php | ||
- wp-graphql/wp-graphql.php | ||
- wp-graphql-jwt-authentication/wp-graphql-jwt-authentication.php | ||
- wp-graphql-woocommerce/wp-graphql-woocommerce.php | ||
configFile: 'tests/_data/config.php' | ||
config: | ||
WPDb: | ||
dsn: 'mysql:host=%DB_HOST%;dbname=%DB_NAME%' | ||
user: '%DB_USER%' | ||
password: '%DB_PASSWORD%' | ||
populator: 'mysql -u $user -p$password -h $host $dbname < $dump' | ||
dump: 'tests/_data/dump.sql' | ||
populate: false | ||
cleanup: true | ||
waitlock: 0 | ||
url: '%WP_URL%' | ||
urlReplacement: true | ||
tablePrefix: '%WP_TABLE_PREFIX%' | ||
WPBrowser: | ||
url: '%WP_URL%' | ||
wpRootFolder: '%WP_ROOT_FOLDER%' | ||
adminUsername: '%ADMIN_USERNAME%' | ||
adminPassword: '%ADMIN_PASSWORD%' | ||
adminPath: '/wp-admin' | ||
cookies: false | ||
REST: | ||
depends: WPBrowser | ||
url: '%WP_URL%' | ||
WPFilesystem: | ||
wpRootFolder: '%WP_ROOT_FOLDER%' | ||
plugins: '/wp-content/plugins' | ||
mu-plugins: '/wp-content/mu-plugins' | ||
themes: '/wp-content/themes' | ||
uploads: '/wp-content/uploads' | ||
WPLoader: | ||
wpRootFolder: '%WP_ROOT_FOLDER%' | ||
dbName: '%DB_NAME%' | ||
dbHost: '%DB_HOST%' | ||
dbUser: '%DB_USER%' | ||
dbPassword: '%DB_PASSWORD%' | ||
tablePrefix: '%WP_TABLE_PREFIX%' | ||
domain: '%WP_DOMAIN%' | ||
adminEmail: '%ADMIN_EMAIL%' | ||
title: 'Test' | ||
plugins: | ||
- woocommerce/woocommerce.php | ||
- woocommerce-gateway-stripe/woocommerce-gateway-stripe.php | ||
- wp-graphql/wp-graphql.php | ||
- wp-graphql-jwt-authentication/wp-graphql-jwt-authentication.php | ||
- wp-graphql-woocommerce/wp-graphql-woocommerce.php | ||
activatePlugins: | ||
- woocommerce/woocommerce.php | ||
- woocommerce-gateway-stripe/woocommerce-gateway-stripe.php | ||
- wp-graphql/wp-graphql.php | ||
- wp-graphql-jwt-authentication/wp-graphql-jwt-authentication.php | ||
- wp-graphql-woocommerce/wp-graphql-woocommerce.php | ||
configFile: 'tests/_data/config.php' |
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
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
Oops, something went wrong.