8 lines
150 B
TypeScript
8 lines
150 B
TypeScript
|
|
import { Entry } from './entry';
|
||
|
|
|
||
|
|
describe('Entry', () => {
|
||
|
|
it('should create an instance', () => {
|
||
|
|
expect(new Entry()).toBeTruthy();
|
||
|
|
});
|
||
|
|
});
|