test(platform-browser): remove usage of blacklist in test naming (#38928)

Remove usage of blacklist in test name.

PR Close #38928
This commit is contained in:
Joey Perrott 2020-09-21 14:15:52 -07:00 committed by Alex Rickabaugh
parent 73550967e4
commit 8236904933

View File

@ -311,7 +311,7 @@ describe('EventManager', () => {
expect(receivedEvents).toEqual([]); expect(receivedEvents).toEqual([]);
}); });
it('should run blackListedEvents handler outside of ngZone', () => { it('should run unpatchedEvents handler outside of ngZone', () => {
const Zone = (window as any)['Zone']; const Zone = (window as any)['Zone'];
const element = el('<div><div></div></div>'); const element = el('<div><div></div></div>');
doc.body.appendChild(element); doc.body.appendChild(element);