generated from amazon-archives/__template_Apache-2.0
-
Notifications
You must be signed in to change notification settings - Fork 81
Expand file tree
/
Copy pathschema.ts
More file actions
34 lines (31 loc) · 799 Bytes
/
schema.ts
File metadata and controls
34 lines (31 loc) · 799 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import type { TestCase } from './test-case';
/**
* Definitions for the integration testing manifest
*/
export interface IntegManifest {
/**
* Version of the manifest
*/
readonly version: string;
/**
* Enable lookups for this test. If lookups are enabled
* then `stackUpdateWorkflow` must be set to false.
* Lookups should only be enabled when you are explicitely testing
* lookups.
*
* @default false
*/
readonly enableLookups?: boolean;
/**
* Additional context to use when performing
* a synth. Any context provided here will override
* any default context
*
* @default - no additional context
*/
readonly synthContext?: { [name: string]: string };
/**
* test cases
*/
readonly testCases: { [testName: string]: TestCase };
}