Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: about 15 hours 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 6 years ago)
- Default Branch: master
- Last Pushed: 2021-09-05T15:55:26.000Z (about 3 years ago)
- Last Synced: 2024-10-13T00:59:40.597Z (about 1 month 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
```