-
Notifications
You must be signed in to change notification settings - Fork 644
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added test for non-bubbling event listener on root el
- Loading branch information
1 parent
26ab32f
commit 9ff4c90
Showing
2 changed files
with
24 additions
and
0 deletions.
There are no files selected for viewing
11 changes: 11 additions & 0 deletions
11
test/autotests/components-browser/event-handler-non-bubbling-root-el/index.marko
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
class { | ||
onMount() { | ||
this.mouseMoveEvent = undefined; | ||
} | ||
handleMouseMove() { | ||
this.mouseMoveEvent = true; | ||
} | ||
} | ||
|
||
<div on-mousemove("handleMouseMove")/> |
13 changes: 13 additions & 0 deletions
13
test/autotests/components-browser/event-handler-non-bubbling-root-el/test.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
var expect = require('chai').expect; | ||
|
||
module.exports = function(helpers) { | ||
var component = helpers.mount(require('./index'), {}); | ||
|
||
expect(component.mouseMoveEvent).to.equal(undefined); | ||
|
||
var rootEl = helpers.targetEl.querySelector('div'); | ||
|
||
helpers.triggerMouseMove(rootEl); | ||
|
||
expect(component.mouseMoveEvent).to.equal(true); | ||
}; |