Skip to content
Snippets Groups Projects
Verified Commit daf3cd72 authored by Dave Long's avatar Dave Long
Browse files

Issue #3503556 by tom konda: Wrong Regular Expression for string comparison in...

Issue #3503556 by tom konda: Wrong Regular Expression for string comparison in Nightwatch.js assertion
parent 78bebf2b
No related branches found
No related tags found
2 merge requests!11197Issue #3506427 by eduardo morales alberti: Remove responsive_image.ajax from hook,!10223132456: Fix issue where views instances are emptied before an ajax request is complete
Pipeline #414285 passed with warnings
Pipeline: drupal

#414303

    Pipeline: drupal

    #414301

      Pipeline: drupal

      #414296

        +4
        ......@@ -7,7 +7,7 @@ module.exports.assertion = function (expected) {
        const deprecationMessages =
        sessionStorageEntries !== null
        ? sessionStorageEntries.filter((message) =>
        new RegExp('[Deprecation]').test(message),
        message.includes('[Deprecation]'),
        )
        : [];
        ......
        ......@@ -7,7 +7,7 @@ module.exports.assertion = function () {
        const deprecationMessages =
        sessionStorageEntries !== null
        ? sessionStorageEntries.filter((message) =>
        new RegExp('[Deprecation]').test(message),
        message.includes('[Deprecation]'),
        )
        : [];
        ......
        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