Skip to content

Commit

Permalink
Use globally available jQuery instead of $ in the color test step def…
Browse files Browse the repository at this point in the history
…inition.
  • Loading branch information
Samuel Mortenson committed Feb 17, 2017
1 parent bb0f6ac commit 6a9a7db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/features/bootstrap/df.behat.inc
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,7 @@ class DFSubContext extends DrupalSubContextBase implements DrupalSubContextInter
// JS script that makes the CSS assertion in the browser.
$script = <<<JS
(function(){
return $("$tag").css('color') === "$value";
return jQuery("$tag").css('color') === "$value";
})();
JS;

Expand Down

0 comments on commit 6a9a7db

Please sign in to comment.