You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy extension files into Magento root folder or use Module Manager for auto-updating of the extension on all your installments
Open app/etc/local.xml.phpunit in editor that you are comfortable with:
Specify database credentials that will be used for test suite in
global/resources/default_setup/connection node.
Specify base_url for secure and unsecure requests in default/web node. It is
required for proper controller tests.
Run the unit tests first time (typing phpunit in the main folder) for installing test database. It will take about 3 minutes.
If it shows that there was no tests found, it means that extension was successfully
installed. If it shows some errors than it means that your customizations has install
scripts that relay on your current database data so you should fix them.
Magento Connect
Get the extension key from the extension page and install it via Magento Connect manager.
Open app/etc/local.xml.phpunit in editor that you are comfortable with:
Specify database credentials that will be used for test suite in
global/resources/default_setup/connection node
Specify base_url for secure and unsecure requests in default/web node. It is
required for proper controller tests.
Run the unit tests first time for installing test database. It will take about 3 minutes.
If it shows that there was no tests found, it means that extension was successfully
installed. If it shows some errors than it means that your customizations has install
scripts that relay on your current database data so you should fix them.