https://github.com/phpmv/ubiquity-codeception
Codeception module for functional tests with codeception
https://github.com/phpmv/ubiquity-codeception
codeception testing testing-tools ubiquity-framework
Last synced: 11 months ago
JSON representation
Codeception module for functional tests with codeception
- Host: GitHub
- URL: https://github.com/phpmv/ubiquity-codeception
- Owner: phpMv
- License: apache-2.0
- Created: 2019-02-03T10:44:18.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2021-09-05T15:55:26.000Z (over 4 years ago)
- Last Synced: 2025-02-13T22:11:53.816Z (11 months ago)
- Topics: codeception, testing, testing-tools, ubiquity-framework
- Language: PHP
- Homepage:
- Size: 63.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Ubiquity module for codeception
This is a Codeception module that enables you to make Codeception's functional
tests for Ubiquity applications.
## Installation
Add a dev dependency on `phpmv/ubiquity-codeception` to your project's
`composer.json` and enable it as a Codeception module, from a test suite
configuration file.
```shell
composer require --dev phpmv/ubiquity-codeception
```
```yaml
class_name: FunctionalTester
modules:
enabled:
- Ubiquity:
root: tests
- REST:
depends: Ubiquity
```