5 lines
76 B
JavaScript
5 lines
76 B
JavaScript
expect(function() {
|
|
const a = 3;
|
|
a = 7;
|
|
}).toThrow('"a" is read-only');
|