cd59bc73ea93ccc2b469bb6890300395e3e86d5b
[yaffs-website] / web / core / modules / system / tests / modules / js_webassert_test / js / js_webassert_test.wait_for_element.es6.js
1 /**
2  * @file
3  *  Testing behavior for JSWebAssertTest.
4  */
5
6 (function($, Drupal, drupalSettings) {
7   /**
8    * @type {Drupal~behavior}
9    *
10    * @prop {Drupal~behaviorAttach} attach
11    *   Makes changes in the DOM to be able to test the completion of AJAX in assertWaitOnAjaxRequest.
12    */
13   Drupal.behaviors.js_webassert_test_wait_for_element = {
14     attach(context) {
15       $('#js_webassert_test_element_invisible').show();
16     },
17   };
18 })(jQuery, Drupal, drupalSettings);