-
Notifications
You must be signed in to change notification settings - Fork 346
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bug #322 Update to Sylius 1.4-BETA (lemuelroberto, Zales0123)
This PR was merged into the 1.3-dev branch. Discussion ---------- It contains changes from #318 Commits ------- 5b5282c Fix doctrine migrations 0603090 Add missing migration and remove unused use statements 2a1bce1 Use SymfonyExtension 2.0 fbc4abd After rebase fixes 40e1547 PR review fixes
- Loading branch information
Showing
14 changed files
with
154 additions
and
222 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 |
---|---|---|
@@ -1,43 +1,54 @@ | ||
imports: | ||
- vendor/sylius/sylius/behat.yml.dist | ||
- vendor/sylius/sylius/src/Sylius/Behat/Resources/config/suites.yml | ||
|
||
default: | ||
extensions: | ||
FriendsOfBehat\ContextServiceExtension: | ||
imports: | ||
- "vendor/sylius/sylius/src/Sylius/Behat/Resources/config/services.xml" | ||
formatters: | ||
pretty: | ||
verbose: true | ||
paths: false | ||
snippets: false | ||
|
||
FriendsOfBehat\SuiteSettingsExtension: | ||
paths: | ||
- "vendor/sylius/sylius/features" | ||
- "features" | ||
extensions: | ||
Lakion\Behat\MinkDebugExtension: | ||
directory: etc/build | ||
clean_start: false | ||
screenshot: true | ||
|
||
Behat\MinkExtension: | ||
files_path: "%paths.base%/vendor/sylius/sylius/src/Sylius/Behat/Resources/fixtures/" | ||
base_url: "http://localhost:8080/" | ||
default_session: symfony | ||
javascript_session: chrome | ||
sessions: | ||
symfony: | ||
symfony: ~ | ||
chrome: | ||
selenium2: | ||
browser: chrome | ||
capabilities: | ||
browserName: chrome | ||
browser: chrome | ||
version: "" | ||
marionette: null # https://github.com/Behat/MinkExtension/pull/311 | ||
chrome: | ||
switches: | ||
- "start-fullscreen" | ||
- "start-maximized" | ||
- "no-sandbox" | ||
firefox: | ||
selenium2: | ||
browser: firefox | ||
show_auto: false | ||
|
||
FriendsOfBehat\SymfonyExtension: | ||
env_file: .env.test | ||
kernel: | ||
env: test | ||
debug: true | ||
class: App\Kernel | ||
path: src/Kernel.php | ||
bootstrap: ~ | ||
FriendsOfBehat\SymfonyExtension: ~ | ||
|
||
cached: | ||
extensions: | ||
FriendsOfBehat\ContextServiceExtension: | ||
imports: | ||
- "vendor/sylius/sylius/src/Sylius/Behat/Resources/config/services.xml" | ||
FriendsOfBehat\VariadicExtension: ~ | ||
|
||
Behat\MinkExtension: | ||
files_path: "%paths.base%/vendor/sylius/sylius/src/Sylius/Behat/Resources/fixtures/" | ||
FriendsOfBehat\SuiteSettingsExtension: | ||
paths: | ||
- "vendor/sylius/sylius/features" | ||
- "features" | ||
|
||
FriendsOfBehat\SymfonyExtension: | ||
env_file: .env.test_cached | ||
kernel: | ||
env: test_cached | ||
debug: false | ||
class: App\Kernel | ||
path: src/Kernel.php | ||
bootstrap: ~ | ||
gherkin: | ||
filters: | ||
tags: "~@todo && ~@cli" # CLI is excluded as it registers an error handler that mutes fatal errors |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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,2 @@ | ||
imports: | ||
- { resource: "../vendor/sylius/sylius/src/Sylius/Behat/Resources/config/services.xml" } |
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,2 @@ | ||
imports: | ||
- { resource: "services_test.yaml" } |
Oops, something went wrong.