jan/core/src/index.test.ts
2024-09-23 13:54:52 +07:00

8 lines
200 B
TypeScript

it('should declare global object core when importing the module and then deleting it', () => {
import('./index');
delete globalThis.core;
expect(typeof globalThis.core).toBe('undefined');
});