Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions test/handlers/isAsync.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
/** Copyright 2025 Amazon.com, Inc. or its affiliates. All Rights Reserved. */
/*
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/

export const handlerAsync = async () => {
const response = {
Expand All @@ -14,4 +17,4 @@ export const handlerNotAsync = () => {
body: JSON.stringify('Hello from Lambda!'),
};
return response;
};
};