(props?: RustFunctionProps)
| 58 | }; |
| 59 | |
| 60 | const templateWithProps = (props?: RustFunctionProps) => { |
| 61 | const app = new App(); |
| 62 | const stack = new Stack(app); |
| 63 | |
| 64 | new RustFunction(stack, 'arm-64-set-via-lambda-architecture', { manifestPath: getTestManifestPath(), ...props }); |
| 65 | |
| 66 | return Template.fromStack(stack); |
| 67 | }; |
| 68 | |
| 69 | describe('CargoLambda.RustFunction', () => { |
| 70 | describe('Without an explicitly set lambda architecture', () => { |
no test coverage detected