()
| 60 | it('should throw on an invalid collection path', () => { |
| 61 | const singleWrapper = () => TestBed.runInInjectionContext(() => afs.collection('collection/doc')); |
| 62 | const quadWrapper = () => TestBed.runInInjectionContext(() => afs.collection('collection/doc/subcollection/doc')); |
| 63 | expect(singleWrapper).toThrowError(); |
| 64 | expect(quadWrapper).toThrowError(); |
| 65 | }); |
nothing calls this directly
no test coverage detected