UNPKG

angular-unit-test-helper

Version:

Helper functions to help write unit tests in Angular using mocks and spies

5 lines 244 B
import { By } from '@angular/platform-browser'; export function getNativeElementByTestId(fixture, testId = '') { return fixture.debugElement.query(By.css(`[data-testid="${testId}"]`)).nativeElement; } //# sourceMappingURL=testHelpers.js.map