(name, fn)
| 219 | it('calls trace function for collectUncompressedSize and createZip', async () => { |
| 220 | const traced: string[] = []; |
| 221 | const trace: TraceFn = async (name, fn) => { |
| 222 | traced.push(name); |
| 223 | return fn(); |
| 224 | }; |
| 225 | |
| 226 | const lambda = createBasicLambda({ |
| 227 | 'index.js': new FileBlob({ data: Buffer.alloc(100) }), |