mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-16 11:36:39 +01:00
8 lines
179 B
TypeScript
8 lines
179 B
TypeScript
import { SafePipe } from './safe.pipe';
|
|
|
|
describe('SafePipe', () => {
|
|
it('create an instance', () => {
|
|
const pipe = new SafePipe();
|
|
expect(pipe).toBeTruthy();
|
|
});
|
|
});
|