mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-06 17:44:11 +00:00
53 lines
2.5 KiB
TypeScript
53 lines
2.5 KiB
TypeScript
import { defineConfig } from 'cypress';
|
|
|
|
export default defineConfig({
|
|
video: true,
|
|
videosFolder: 'cypress/videos',
|
|
screenshotsFolder: 'cypress/screenshots',
|
|
fixturesFolder: 'cypress/fixtures',
|
|
retries: {
|
|
runMode: 2,
|
|
openMode: 0,
|
|
},
|
|
env: {
|
|
// Global DSpace environment variables used in all our Cypress e2e tests
|
|
// May be modified in this config, or overridden in a variety of ways.
|
|
// See Cypress environment variable docs: https://docs.cypress.io/guides/guides/environment-variables
|
|
// Default values listed here are all valid for the Demo Entities Data set available at
|
|
// https://github.com/DSpace-Labs/AIP-Files/releases/tag/demo-entities-data
|
|
// (This is the data set used in our CI environment)
|
|
|
|
// Admin account used for administrative tests
|
|
DSPACE_TEST_ADMIN_USER: 'dspacedemo+admin@gmail.com',
|
|
DSPACE_TEST_ADMIN_USER_UUID: '335647b6-8a52-4ecb-a8c1-7ebabb199bda',
|
|
DSPACE_TEST_ADMIN_PASSWORD: 'dspace',
|
|
// Community/collection/publication used for view/edit tests
|
|
DSPACE_TEST_COMMUNITY: '0958c910-2037-42a9-81c7-dca80e3892b4',
|
|
DSPACE_TEST_COLLECTION: '282164f5-d325-4740-8dd1-fa4d6d3e7200',
|
|
DSPACE_TEST_ENTITY_PUBLICATION: '6160810f-1e53-40db-81ef-f6621a727398',
|
|
// Search term (should return results) used in search tests
|
|
DSPACE_TEST_SEARCH_TERM: 'test',
|
|
// Main Collection used for submission tests. Should be able to accept normal Item objects
|
|
DSPACE_TEST_SUBMIT_COLLECTION_NAME: 'Sample Collection',
|
|
DSPACE_TEST_SUBMIT_COLLECTION_UUID: '9d8334e9-25d3-4a67-9cea-3dffdef80144',
|
|
// Collection used for Person entity submission tests. MUST be configured with EntityType=Person.
|
|
DSPACE_TEST_SUBMIT_PERSON_COLLECTION_NAME: 'People',
|
|
// Account used to test basic submission process
|
|
DSPACE_TEST_SUBMIT_USER: 'dspacedemo+submit@gmail.com',
|
|
DSPACE_TEST_SUBMIT_USER_UUID: '914955b1-cf2e-4884-8af7-a166aa24cf73',
|
|
DSPACE_TEST_SUBMIT_USER_PASSWORD: 'dspace',
|
|
// Administrator users group
|
|
DSPACE_ADMINISTRATOR_GROUP: 'e59f5659-bff9-451e-b28f-439e7bd467e4'
|
|
},
|
|
e2e: {
|
|
// Setup our plugins for e2e tests
|
|
setupNodeEvents(on, config) {
|
|
return require('./cypress/plugins/index.ts')(on, config);
|
|
},
|
|
// This is the base URL that Cypress will run all tests against
|
|
// It can be overridden via the CYPRESS_BASE_URL environment variable
|
|
// (By default we set this to a value which should work in most development environments)
|
|
baseUrl: 'http://localhost:4000',
|
|
},
|
|
});
|