Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Commit ee971532 authored by drishu's avatar drishu
Browse files

OEL-617: Remove soft dependencies from hard.

parent 2aec0871
No related branches found
No related tags found
1 merge request!39OEL-617: Remove helper hard dependencies and behat
default:
suites:
default:
paths:
- "%paths.base%/tests/features"
contexts:
- Drupal\DrupalExtension\Context\MinkContext
- Drupal\DrupalExtension\Context\DrupalContext
extensions:
Drupal\MinkExtension:
goutte: ~
ajax_timeout: 10
browser_name: 'chrome'
javascript_session: 'selenium2'
selenium2:
wd_host: '${selenium.host}:${selenium.port}/wd/hub'
capabilities: { "browser": "chrome", "version": "*" }
base_url: "${drupal.base_url}"
files_path: "%paths.base%/tests/fixtures/"
Drupal\DrupalExtension:
api_driver: "drupal"
drupal:
drupal_root: "${drupal.root}"
formatters:
progress: ~
......@@ -3,7 +3,3 @@ type: module
description: OpenEuropa Whitelabel Theme helpers and tools.
package: OpenEuropa Whitelabel Theme
core_version_requirement: ^8.9 || ^9.1
dependencies:
- openeuropa:oe_authentication
- openeuropa:oe_multilingual
- openeuropa:oe_corporate_blocks
parameters:
# oe_whitelabel_helper.twig_loader.namespaces: ['bcl-twig', 'bcl']
# oe_whitelabel_helper.twig_loader.theme: 'oe_whitelabel'
# oe_whitelabel_helper.twig_loader.directory: 'components'
services:
oe_whitelabel_helper.twig_extension.twig_extension:
class: Drupal\oe_whitelabel_helper\TwigExtension\TwigExtension
......
<?php
declare(strict_types = 1);
namespace Drupal\Tests\oe_whitelabel\Behat;
use Drupal\DrupalExtension\Context\RawDrupalContext;
/**
* Defines step definitions that are generally useful in this project.
*/
class DrupalContext extends RawDrupalContext {
}
Feature: Test Behat testing itself
Scenario: Check that Behat testing works
When I go to homepage
Then the response status code should be 200
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment