Files
ladybird/Tests/LibJS/Runtime/non-writable-assignment.js
2026-01-22 07:46:48 -05:00

13 lines
348 B
JavaScript

test("normal mode", () => {
expect(() => {
NaN = 5; // NaN is a non-writable global variable
}).not.toThrow();
});
test("strict mode", () => {
expect(() => {
"use strict";
NaN = 5; // NaN is a non-writable global variable
}).toThrowWithMessage(TypeError, "Cannot write to non-writable property 'NaN'");
});