Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2020-11-02 15:42:40 +0300
committerGitHub <noreply@github.com>2020-11-02 15:42:40 +0300
commit71010cb1e99c95619e71f271e941e7edb0c6ea37 (patch)
treeef3817b7081b83f710a7f1966c1be082330b3ae1 /js
parente0b8fcdf899aa1c25fe2ddf050452f7451ed0cdd (diff)
tests: switch to using `toContain()` to check for substring presence (#32043)
Diffstat (limited to 'js')
-rw-r--r--js/tests/unit/tooltip.spec.js2
-rw-r--r--js/tests/unit/util/sanitizer.spec.js8
2 files changed, 5 insertions, 5 deletions
diff --git a/js/tests/unit/tooltip.spec.js b/js/tests/unit/tooltip.spec.js
index 3e5c917940..611fadfe1c 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 dcfad8436f..395875d624 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', () => {