diff options
| author | XhmikosR <[email protected]> | 2020-11-02 14:42:40 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-11-02 14:42:40 +0200 |
| commit | 71010cb1e99c95619e71f271e941e7edb0c6ea37 (patch) | |
| tree | ef3817b7081b83f710a7f1966c1be082330b3ae1 /js | |
| parent | e0b8fcdf899aa1c25fe2ddf050452f7451ed0cdd (diff) | |
| download | bootstrap-71010cb1e99c95619e71f271e941e7edb0c6ea37.tar.xz bootstrap-71010cb1e99c95619e71f271e941e7edb0c6ea37.zip | |
tests: switch to using `toContain()` to check for substring presence (#32043)
Diffstat (limited to 'js')
| -rw-r--r-- | js/tests/unit/tooltip.spec.js | 2 | ||||
| -rw-r--r-- | js/tests/unit/util/sanitizer.spec.js | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/js/tests/unit/tooltip.spec.js b/js/tests/unit/tooltip.spec.js index 3e5c91794..611fadfe1 100644 --- a/js/tests/unit/tooltip.spec.js +++ b/js/tests/unit/tooltip.spec.js @@ -317,7 +317,7 @@ describe('Tooltip', () => { expect(tooltipShown).toBeDefined() expect(tooltipEl.getAttribute('aria-describedby')).toEqual(tooltipShown.getAttribute('id')) - expect(tooltipShown.getAttribute('id').indexOf('tooltip') !== -1).toEqual(true) + expect(tooltipShown.getAttribute('id')).toContain('tooltip') done() }) diff --git a/js/tests/unit/util/sanitizer.spec.js b/js/tests/unit/util/sanitizer.spec.js index dcfad8436..395875d62 100644 --- a/js/tests/unit/util/sanitizer.spec.js +++ b/js/tests/unit/util/sanitizer.spec.js @@ -20,7 +20,7 @@ describe('Sanitizer', () => { const result = sanitizeHtml(template, DefaultAllowlist, null) - expect(result.indexOf('script') === -1).toEqual(true) + expect(result).not.toContain('script') }) it('should allow aria attributes and safe attributes', () => { @@ -32,8 +32,8 @@ describe('Sanitizer', () => { const result = sanitizeHtml(template, DefaultAllowlist, null) - expect(result.indexOf('aria-pressed') !== -1).toEqual(true) - expect(result.indexOf('class="test"') !== -1).toEqual(true) + expect(result).toContain('aria-pressed') + expect(result).toContain('class="test"') }) it('should remove tags not in allowlist', () => { @@ -45,7 +45,7 @@ describe('Sanitizer', () => { const result = sanitizeHtml(template, DefaultAllowlist, null) - expect(result.indexOf('<script>') === -1).toEqual(true) + expect(result).not.toContain('<script>') }) it('should not use native api to sanitize if a custom function passed', () => { |
