8 lines
191 B
TypeScript
8 lines
191 B
TypeScript
import { GlobalConstants } from './global-constants';
|
|
|
|
describe('GlobalConstants', () => {
|
|
it('should create an instance', () => {
|
|
expect(new GlobalConstants()).toBeTruthy();
|
|
});
|
|
});
|