export default { compileOptions: { dev: true }, test({ assert, component }) { try { component.width = 99; throw new Error('Expected an error'); } catch (err) { assert.equal(err.message, `
: Cannot set read-only property 'width'`); } } };