forked from eclipse-edc/DataDashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcypress.config.ts
More file actions
44 lines (40 loc) · 1.12 KB
/
cypress.config.ts
File metadata and controls
44 lines (40 loc) · 1.12 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/*
* Copyright (c) 2025 Fraunhofer-Gesellschaft zur Förderung der angewandten Forschung e.V.
*
* This program and the accompanying materials are made available under the
* terms of the Apache License, Version 2.0 which is available at
* https://www.apache.org/licenses/LICENSE-2.0
*
* SPDX-License-Identifier: Apache-2.0
*
* Contributors:
* Fraunhofer-Gesellschaft zur Förderung der angewandten Forschung e.V. - initial API and implementation
*
*/
import { defineConfig } from 'cypress';
export default defineConfig({
projectId: '5bofid',
e2e: {
baseUrl: 'http://localhost:4200',
},
component: {
devServer: {
framework: 'angular',
bundler: 'webpack',
},
specPattern: '**/*.cy.ts',
},
env: {
edcConfig: [
{
connectorName: 'cypress',
managementUrl: 'http://test.connector/management',
defaultUrl: 'http://test.connector/api',
protocolUrl: 'http://test.connector/protocol',
federatedCatalogEnabled: true,
federatedCatalogUrl: 'http://fc.connector/catalog',
did: 'http://ih.connector/',
},
],
},
});