mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 10:24:57 +00:00
8 lines
148 B
JavaScript
8 lines
148 B
JavaScript
a = 1;
|
|
|
|
test("basic functionality", () => {
|
|
expect(delete globalThis.a).toBeTrue();
|
|
expect(() => {
|
|
a = 2;
|
|
}).not.toThrow();
|
|
});
|