Newer
Older
minerva / Userland / Libraries / LibJS / Tests / operators / delete-globalThis-property-crash.js
@minerva minerva on 13 Jul 148 bytes Initial commit
a = 1;

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