()
| 746 | it('should register doc-service factory and install', function* () { |
| 747 | let count = 0; |
| 748 | function factory() { |
| 749 | count++; |
| 750 | return {str: 'A'}; |
| 751 | } |
| 752 | const ampdoc = new AmpDocSingle(win); |
| 753 | ampdoc.declareExtension('amp-ext', '0.1'); |
| 754 | ampdocServiceMock.expects('getAmpDoc').returns(ampdoc).atLeast(1); |
no outgoing calls
no test coverage detected