8 lines
179 B
TypeScript
8 lines
179 B
TypeScript
import { PaperlessLog } from './paperless-log';
|
|
|
|
describe('PaperlessLog', () => {
|
|
it('should create an instance', () => {
|
|
expect(new PaperlessLog()).toBeTruthy();
|
|
});
|
|
});
|