From cbe86a773a106bf97a77aae4311bfd9fa67837a6 Mon Sep 17 00:00:00 2001 From: David Ball Date: Wed, 17 Jul 2024 18:18:53 -0400 Subject: [PATCH] Added examples/ to tsconfig. --- test/api/DefaultApi.spec.js => tests/api/DefaultApi.ts | 2 ++ tsconfig.json | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) rename test/api/DefaultApi.spec.js => tests/api/DefaultApi.ts (99%) diff --git a/test/api/DefaultApi.spec.js b/tests/api/DefaultApi.ts similarity index 99% rename from test/api/DefaultApi.spec.js rename to tests/api/DefaultApi.ts index 58c3d33..cf9ae16 100644 --- a/test/api/DefaultApi.spec.js +++ b/tests/api/DefaultApi.ts @@ -1,4 +1,6 @@ /** + * Converted from mocha to vitest and refactored to TypeScript by David A. Ball. (c) 2024. + * * Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). diff --git a/tsconfig.json b/tsconfig.json index 92b12b8..2810343 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -10,6 +10,7 @@ }, "include": [ "src/**/*", - "tests/**/*" + "tests/**/*", + "examples/**/*", ] } \ No newline at end of file