2017-02-20 16:04:50 -07:00

23 lines
547 B
JavaScript

var expect = require('chai').expect;
module.exports = {
onMount: function() {
this.name = 'app-legacy-button';
var logOutput = this.logOutput = [];
function log(data) {
logOutput.push(data);
}
this.log = log;
this.clicked = false;
},
handleRootMouseDown: function(event, el) {
this.clicked = true;
expect(el.getAttribute('class')).to.equal('app-legacy-button');
this.log('click');
expect(this.name).to.equal('app-legacy-button');
}
};