(resource)
| 1390 | } |
| 1391 | |
| 1392 | function stubBuild(resource) { |
| 1393 | const origBuild = resource.build; |
| 1394 | sandbox.stub(resource, 'build').callsFake(() => { |
| 1395 | resource.buildPromise = origBuild.call(resource); |
| 1396 | return resource.buildPromise; |
| 1397 | }); |
| 1398 | return resource; |
| 1399 | } |
| 1400 | |
| 1401 | beforeEach(() => { |
| 1402 | sandbox = env.sandbox; |