heykarthikwithu / codeception
A drupal application with codeception integration.
Installs: 0
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 1
Open Issues: 0
pkg:composer/heykarthikwithu/codeception
Requires
- codeception/codeception: 2.2
- composer/installers: ~1.0
- derhasi/composer-preserve-paths: 0.1.*
- drupal/drupal: 7.*
- jakoch/phantomjs-installer: 2.1.1-p08
- site5/phantoman: 1.1.7
Conflicts
- drupal/core: 8.*
This package is not auto-updated.
Last update: 2025-10-06 20:41:59 UTC
README
A Drupal application with Codeception integration and PhantomanJS.
Initially do a composer update, which would get the drupal codebase locally.
$ composer update
Then to get the codeception to be bootstrapped.
$ php vendor/bin/codecept bootstrap
Then add the phantoman congifuration in the codeception.yml
file.
extensions:
enabled:
- Codeception\Extension\Phantoman
config:
Codeception\Extension\Phantoman:
path: 'vendor/bin/phantomjs'
port: 4444
suites: ['acceptance']
Then run the test cases.
$ php vendor/bin/codecept run