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
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2020-12-07 20:10:20 +0300
committerGitHub <noreply@github.com>2020-12-07 20:10:20 +0300
commitd15a0247ce444eb15f79b8bf76f2bc10f8eeb71a (patch)
treef8c7e71354afa3c4c8aad10937302032bffa3046 /js/tests/unit/dom
parent33b275c04b0957a830a6d3a57682ed216b18b887 (diff)
Remove `SelectorEngine.matches()`. (#32339)
It's basically unused.
Diffstat (limited to 'js/tests/unit/dom')
-rw-r--r--js/tests/unit/dom/selector-engine.spec.js8
1 files changed, 0 insertions, 8 deletions
diff --git a/js/tests/unit/dom/selector-engine.spec.js b/js/tests/unit/dom/selector-engine.spec.js
index 781d0ce1b5..d108a2efbf 100644
--- a/js/tests/unit/dom/selector-engine.spec.js
+++ b/js/tests/unit/dom/selector-engine.spec.js
@@ -14,14 +14,6 @@ describe('SelectorEngine', () => {
clearFixture()
})
- describe('matches', () => {
- it('should return matched elements', () => {
- fixtureEl.innerHTML = '<div></div>'
-
- expect(SelectorEngine.matches(fixtureEl, 'div')).toEqual(true)
- })
- })
-
describe('find', () => {
it('should find elements', () => {
fixtureEl.innerHTML = '<div></div>'