9 lines
187 B
TypeScript
9 lines
187 B
TypeScript
![]() |
import { ExistsPipe } from './exists.pipe';
|
||
|
|
||
|
describe('ExistsPipe', () => {
|
||
|
it('create an instance', () => {
|
||
|
const pipe = new ExistsPipe();
|
||
|
expect(pipe).toBeTruthy();
|
||
|
});
|
||
|
});
|