14 lines
283 B
TypeScript
14 lines
283 B
TypeScript
import { RegexMatchViewComponent } from './regex-match-view.component';
|
|
|
|
|
|
describe("RegexMatchViewComponent", () => {
|
|
var component: RegexMatchViewComponent;
|
|
|
|
beforeEach(() => {
|
|
component = new RegexMatchViewComponent();
|
|
});
|
|
|
|
describe("filterMatches", () => {
|
|
|
|
});
|
|
});
|