/* eslint-disable space-before-function-paren, no-var, comma-dangle, no-return-assign, padded-blocks, max-len */ /*= require behaviors/autosize */ (function() { describe('Autosize behavior', function() { var load; beforeEach(function() { return setFixtures(''); }); it('does not overwrite the resize property', function() { load(); return expect($('textarea')).toHaveCss({ resize: 'vertical' }); }); return load = function() { return $(document).trigger('page:load'); }; }); }).call(this);