We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b81ad0 commit 37e594aCopy full SHA for 37e594a
packages/commons/tests/utils/e2eUtils.ts
@@ -14,11 +14,12 @@ import { InvocationLogs } from './InvocationLogs';
14
15
const lambdaClient = new AWS.Lambda();
16
17
-const testRuntimeKeys = [ 'nodejs12x', 'nodejs14x' ];
+const testRuntimeKeys = [ 'nodejs12x', 'nodejs14x', 'nodejs16x' ];
18
export type TestRuntimesKey = typeof testRuntimeKeys[number];
19
export const TEST_RUNTIMES: Record<TestRuntimesKey, Runtime> = {
20
nodejs12x: Runtime.NODEJS_12_X,
21
nodejs14x: Runtime.NODEJS_14_X,
22
+ nodejs16x: Runtime.NODEJS_16_X
23
};
24
25
export type StackWithLambdaFunctionOptions = {
0 commit comments