From 3a50a2903091db4035a322b5b56f1b38a6d7f348 Mon Sep 17 00:00:00 2001 From: Guy Owen Date: Wed, 2 Dec 2020 14:16:07 +1100 Subject: [PATCH] [SDPA-4755] Added JSTrait to test confirms. (#45) Co-authored-by: Vincent Gao --- tests/behat/bootstrap/FeatureContext.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/behat/bootstrap/FeatureContext.php b/tests/behat/bootstrap/FeatureContext.php index da05bb2..5a40dad 100644 --- a/tests/behat/bootstrap/FeatureContext.php +++ b/tests/behat/bootstrap/FeatureContext.php @@ -8,6 +8,7 @@ use Drupal\DrupalExtension\Context\DrupalContext; use IntegratedExperts\BehatSteps\D8\WatchdogTrait; use IntegratedExperts\BehatSteps\FieldTrait; +use IntegratedExperts\BehatSteps\JsTrait; use IntegratedExperts\BehatSteps\LinkTrait; use IntegratedExperts\BehatSteps\PathTrait; use IntegratedExperts\BehatSteps\ResponseTrait; @@ -33,5 +34,6 @@ class FeatureContext extends DrupalContext { use TideExtensionsTrait; use TideEntityTrait; use WatchdogTrait; + use JsTrait; }