9 lines
199 B
TypeScript
9 lines
199 B
TypeScript
import { Hex2asciiPipe } from './hex2ascii.pipe';
|
|
|
|
describe('Hex2asciiPipe', () => {
|
|
it('create an instance', () => {
|
|
const pipe = new Hex2asciiPipe();
|
|
expect(pipe).toBeTruthy();
|
|
});
|
|
});
|