24 lines
499 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");
},
};