[DURACOM-240] working directive

need to change markdown pipe to markdown directive and put everything in there
This commit is contained in:
Andrea Barbasso
2024-02-26 16:03:12 +01:00
committed by Giuseppe Digilio
parent c6b72f6c64
commit 825308e223
6 changed files with 181 additions and 5 deletions

View File

@@ -0,0 +1,16 @@
import { TestBed } from '@angular/core/testing';
import { MathService } from './math.service';
describe('MathService', () => {
let service: MathService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(MathService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});