Skip to content

Commit 37e594a

Browse files
committed
Added runtime to e2eUtils
1 parent 5b81ad0 commit 37e594a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Diff for: packages/commons/tests/utils/e2eUtils.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,12 @@ import { InvocationLogs } from './InvocationLogs';
1414

1515
const lambdaClient = new AWS.Lambda();
1616

17-
const testRuntimeKeys = [ 'nodejs12x', 'nodejs14x' ];
17+
const testRuntimeKeys = [ 'nodejs12x', 'nodejs14x', 'nodejs16x' ];
1818
export type TestRuntimesKey = typeof testRuntimeKeys[number];
1919
export const TEST_RUNTIMES: Record<TestRuntimesKey, Runtime> = {
2020
nodejs12x: Runtime.NODEJS_12_X,
2121
nodejs14x: Runtime.NODEJS_14_X,
22+
nodejs16x: Runtime.NODEJS_16_X
2223
};
2324

2425
export type StackWithLambdaFunctionOptions = {

0 commit comments

Comments
 (0)