14 lines
264 B

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