Skip to content

Commit

Permalink
Update S3BackupTarget value
Browse files Browse the repository at this point in the history
  • Loading branch information
TachunLin committed Oct 18, 2024
1 parent 222222b commit 6c733d3
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions cypress/testcases/settings/settings.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,14 +65,14 @@ describe('Set backup target S3', () => {
it.only('Set backup target S3', () => {
settings.clickMenu('backup-target', 'Edit Setting', 'backup-target');

const backupTarget = Cypress.env('S3backupTarget');
const backupTarget = Cypress.env('backupTarget');
settings.setS3BackupTarget({
type: 'S3',
endpoint: backupTarget.endpoint,
bucketName: backupTarget.bucketName,
bucketRegion: backupTarget.bucketRegion,
accessKeyId: backupTarget.accessKey,
secretAccessKey: backupTarget.secretKey,
endpoint: "http://172.19.99.205:9000",
bucketName: "cypress",
bucketRegion: "ecmlab",
accessKeyId: "minioadmin",
secretAccessKey: "minioadmin",
})

settings.update('backup-target');
Expand Down

0 comments on commit 6c733d3

Please sign in to comment.