Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / modules / system / tests / modules / js_webassert_test / js / js_webassert_test.wait_for_ajax_request.es6.js
index d2e1fea2ce5de1f42d40aae1ce48f33abc3bd1a7..afed631078b15234fa1c5da0a71ddc094e008bba 100644 (file)
@@ -3,7 +3,7 @@
  *  Testing behavior for JSWebAssertTest.
  */
 
-(function ($, Drupal, drupalSettings) {
+(function($, Drupal, drupalSettings) {
   /**
    * @type {Drupal~behavior}
    *
@@ -12,7 +12,9 @@
    */
   Drupal.behaviors.js_webassert_test_wait_for_ajax_request = {
     attach(context) {
-      $('input[name="test_assert_wait_on_ajax_input"]').val('js_webassert_test');
+      $('input[name="test_assert_wait_on_ajax_input"]').val(
+        'js_webassert_test',
+      );
     },
   };
-}(jQuery, Drupal, drupalSettings));
+})(jQuery, Drupal, drupalSettings);