You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sandkasten-web/src/app/safe-html.pipe.spec.ts

14 lines
382 B

import { SafeHTMLPipe } from './safe-html.pipe';
import { inject } from '@angular/core/testing';
import { DomSanitizer } from '@angular/platform-browser';
describe('SafeHTMLPipe', () => {
it('create an instance', inject(
[DomSanitizer],
(domSanitizer: DomSanitizer) => {
const pipe = new SafeHTMLPipe(domSanitizer);
expect(pipe).toBeTruthy();
}
));
});