11 lines
196 B
TypeScript
11 lines
196 B
TypeScript
import { ExistsPipe } from './exists.pipe';
|
|
|
|
// TODO
|
|
|
|
describe('ExistsPipe', () => {
|
|
it('create an instance', () => {
|
|
const pipe = new ExistsPipe();
|
|
expect(pipe).toBeTruthy();
|
|
});
|
|
});
|