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

17 lines
359 B
JavaScript

var expect = require('chai').expect;
module.exports = function(helpers) {
var widget = helpers.mount(require('./index'), {
name: 'Frank'
});
expect(widget.config).to.deep.equal({
string: 'Frank',
number: 12,
boolean: true,
complex: {
a: '<\"hello">',
b: 'test'
}
});
};