|
1 | 1 | import { defineConfig } from "vitest/config";
|
2 | 2 |
|
| 3 | +/** |
| 4 | + * AWS SDK for JavaScript test classifications: |
| 5 | + * |
| 6 | + * Unit tests are test scenarios that exercise a single functionality. |
| 7 | + * Ideally, all modules other than the one being tested should be mocked. |
| 8 | + * However, pragmiatically speaking this isn't always the case. |
| 9 | + * Unit tests never communicate with AWS services. |
| 10 | + * |
| 11 | + * Integration tests involve minimal mocking and test multiple modules |
| 12 | + * in concert. The test should use the public interfaces of our modules. |
| 13 | + * Integration tests never communicate with AWS services. |
| 14 | + * |
| 15 | + * E2E tests use only the public interfaces of our code and do |
| 16 | + * communicate with AWS services. No mocking is done for E2E tests. |
| 17 | + * The tests run with cucumber-js are |
| 18 | + * now considered E2E tests in this classification system. |
| 19 | + * |
| 20 | + * Browser tests are a separate category, require alternate configuration, |
| 21 | + * and may be classified as unit or e2e tests. |
| 22 | + */ |
3 | 23 | export default defineConfig({
|
4 | 24 | test: {
|
5 | 25 | exclude: [
|
6 |
| - "node_modules", |
| 26 | + "**/*/node_modules/**/*.spec.ts", |
7 | 27 | "**/*.{integ,e2e,browser}.spec.ts",
|
8 |
| - "private/aws-restjson-server/**/*.spec.ts", |
9 |
| - "private/aws-restjson-validation-server/**/*.spec.ts", |
| 28 | + "packages/signature-v4-crt/**/*.spec.ts", |
| 29 | + "packages/types/**/*.ts", |
| 30 | + "packages/util-user-agent-browser/src/index.spec.ts", |
| 31 | + "packages/util-user-agent-browser/src/index.native.spec.ts", |
| 32 | + "packages/credential-provider-cognito-identity/src/localStorage-inmemoryStorage.spec.ts", |
| 33 | + "packages/body-checksum-browser/src/index.spec.ts", |
| 34 | + "packages/middleware-websocket/src/get-event-signing-stream.spec.ts", |
| 35 | + "packages/middleware-websocket/src/EventStreamPayloadHandler.spec.ts", |
| 36 | + "packages/credential-provider-cognito-identity/src/localStorage.spec.ts", |
10 | 37 | ],
|
11 |
| - include: ["clients/client-*/**/*.spec.ts", "lib/**/*.spec.ts", "packages/**/*.spec.ts", "private/**/*.spec.ts"], |
| 38 | + include: ["lib/**/*.spec.ts", "packages/**/*.spec.ts"], |
12 | 39 | environment: "node",
|
13 |
| - globals: true, |
14 | 40 | },
|
15 | 41 | });
|
0 commit comments