Run
composer create-project sylius/plugin-skeleton ProjectName.From the plugin skeleton root directory, run the following commands:
$ (cd tests/Application && yarn install) $ (cd tests/Application && yarn run gulp) $ (cd tests/Application && bin/console assets:install web -e test) $ (cd tests/Application && bin/console doctrine:database:create -e test) $ (cd tests/Application && bin/console doctrine:schema:create -e test)
PHPUnit
$ bin/phpunit
PHPSpec
$ bin/phpspec run
Behat (non-JS scenarios)
$ bin/behat --tags="~@javascript"Behat (JS scenarios)
Download Chromedriver
Run Selenium server with previously downloaded Chromedriver:
$ bin/selenium-server-standalone -Dwebdriver.chrome.driver=chromedriver
Run test application's webserver on
localhost:8080:$ (cd tests/Application && bin/console server:run 127.0.0.1:8080 -d web -e test)Run Behat:
$ bin/behat --tags="@javascript"
Using
testenvironment:$ (cd tests/Application && bin/console sylius:fixtures:load -e test) $ (cd tests/Application && bin/console server:run -d web -e test)
Using
devenvironment:$ (cd tests/Application && bin/console sylius:fixtures:load -e dev) $ (cd tests/Application && bin/console server:run -d web -e dev)
