-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathdwpTestScenarios.ts
More file actions
27 lines (24 loc) · 1.09 KB
/
dwpTestScenarios.ts
File metadata and controls
27 lines (24 loc) · 1.09 KB
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
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See LICENSE.md in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import { generateAlbumApiJavaScriptTestCases } from "./testCases/albumApiJavaScriptTestCases";
import { type DeployWorkspaceProjectTestCase } from "./testCases/DeployWorkspaceProjectTestCase";
import { generateMonoRepoBasicTestCases } from "./testCases/monoRepoBasicTestCases";
export interface DeployWorkspaceProjectTestScenario {
label: string;
folderName: string;
testCases: DeployWorkspaceProjectTestCase[];
}
export const dwpTestScenarios: DeployWorkspaceProjectTestScenario[] = [
{
label: 'albumapi-js',
folderName: 'albumapi-js',
testCases: generateAlbumApiJavaScriptTestCases()
},
{
label: 'monorepo',
folderName: 'monorepo-basic',
testCases: generateMonoRepoBasicTestCases()
},
];