mirror of
https://github.com/marko-js/marko.git
synced 2025-12-08 19:26:05 +00:00
16 lines
396 B
JavaScript
16 lines
396 B
JavaScript
var expect = require('chai').expect;
|
|
|
|
module.exports = function(helpers) {
|
|
var widget = helpers.mount(require('./index'), {
|
|
size: 'large',
|
|
label: 'Initial Label'
|
|
});
|
|
|
|
expect(widget.el.className).to.contain('large');
|
|
|
|
require('marko/widgets').batchUpdate(function() {
|
|
widget.setSize('small');
|
|
});
|
|
|
|
expect(widget.el.className).to.contain('small');
|
|
}; |