2017 © Pedro Peláez
 

library codeception

A drupal application with codeception integration.

image

heykarthikwithu/codeception

A drupal application with codeception integration.

  • Wednesday, March 1, 2017
  • by heykarthikwithu
  • Repository
  • 1 Watchers
  • 0 Stars
  • 0 Installations
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 3 Versions
  • 0 % Grown

The README.md

Codeception in Drupal 7

A Drupal application with Codeception integration and PhantomanJS., (*1)

Initially do a composer update, which would get the drupal codebase locally., (*2)

$ composer update, (*3)

Then to get the codeception to be bootstrapped., (*4)

$ php vendor/bin/codecept bootstrap, (*5)

Then add the phantoman congifuration in the codeception.yml file., (*6)

extensions:
    enabled:
        - Codeception\Extension\Phantoman
    config:
       Codeception\Extension\Phantoman:
            path: 'vendor/bin/phantomjs'
            port: 4444
            suites: ['acceptance']

Then run the test cases., (*7)

$ php vendor/bin/codecept run, (*8)

The Versions