9 lines
228 B
TypeScript
9 lines
228 B
TypeScript
import { WebviewDirective } from './webview.directive';
|
|
|
|
describe('WebviewDirective', () => {
|
|
it('should create an instance', () => {
|
|
const directive = new WebviewDirective();
|
|
expect(directive).toBeTruthy();
|
|
});
|
|
});
|