mirror of
https://github.com/joomla-extensions/weblinks.git
synced 2025-01-14 00:22:16 +00:00
17d223b4c1
This pull adds the base for testing Weblinks component with an Firefox automated browser via Selenium and Codeception Framework. See it in action in the following video: https://www.youtube.com/watch?v=gpsZVZCsawg This pull will launch the tests in Travis, however you can run the tests in your local machine too. Find the instructions at: README.md
15 lines
634 B
Markdown
15 lines
634 B
Markdown
# Weblinks for Joomla!
|
|
|
|
This repo is meant to hold the decoupled com_weblinks component and related code.
|
|
|
|
# Tests
|
|
To prepare the system tests (Selenium) to be run in your local machine you are asked to rename the file `tests/acceptance.suite.dist.yml` to `tests/acceptance.suite.yml`. Afterwards, please edit the file according to your system needs.
|
|
|
|
To run the tests please execute the following commands (for the moment only working in Linux and MacOS, for more information see: https://docs.joomla.org/Testing_Joomla_Extensions_with_Codeception):
|
|
|
|
```bash
|
|
$ composer update
|
|
$ vendor/bin/robo
|
|
$ vendor/bin/robo test:acceptance
|
|
```
|