1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-15 05:44:58 +00:00
serenity/Libraries/LibJS/Tests/operators/delete-globalThis-property-crash.js
2020-07-06 23:40:35 +02:00

8 lines
148 B
JavaScript

a = 1;
test("basic functionality", () => {
expect(delete globalThis.a).toBeTrue();
expect(() => {
a = 2;
}).not.toThrow();
});