2022-06-28 18:07:31 +00:00
|
|
|
const { defineConfig } = require('cypress');
|
|
|
|
module.exports = defineConfig({
|
|
|
|
projectId: 'et4snf',
|
|
|
|
|
|
|
|
e2e: {
|
|
|
|
baseUrl: 'http://localhost:4210',
|
|
|
|
fileServerFolder: '.',
|
|
|
|
fixturesFolder: false,
|
|
|
|
specPattern: '**/*.cy.{js,jsx,ts,tsx}',
|
|
|
|
modifyObstructiveCode: false,
|
|
|
|
supportFile: './src/support/index.ts',
|
|
|
|
video: true,
|
2022-07-08 12:54:56 +00:00
|
|
|
videoUploadOnPasses: false,
|
2022-06-28 18:07:31 +00:00
|
|
|
videosFolder: '../../dist/cypress/apps/explorer-e2e/videos',
|
|
|
|
screenshotsFolder: '../../dist/cypress/apps/explorer-e2e/screenshots',
|
|
|
|
chromeWebSecurity: false,
|
|
|
|
},
|
2022-07-08 10:48:51 +00:00
|
|
|
env: {
|
|
|
|
ethProviderUrl: 'http://localhost:8545/',
|
|
|
|
ethWalletPublicKey: '0xEe7D375bcB50C26d52E1A4a472D8822A2A22d94F',
|
|
|
|
ethStakingBridgeContractAddress:
|
|
|
|
'0x9135f5afd6F055e731bca2348429482eE614CFfA',
|
|
|
|
vegaWalletName: 'capsule_wallet',
|
|
|
|
vegaWalletLocation: '~/.vegacapsule/testnet/wallet',
|
|
|
|
vegaWalletPassphrase: '123',
|
|
|
|
vegaWalletMnemonic:
|
|
|
|
'ozone access unlock valid olympic save include omit supply green clown session',
|
|
|
|
vegaWalletPublicKey:
|
|
|
|
'02eceaba4df2bef76ea10caf728d8a099a2aa846cced25737cccaa9812342f65',
|
|
|
|
vegaWalletPublicKeyShort: '02ecea…2f65',
|
|
|
|
vegaTokenContractAddress: '0xF41bD86d462D36b997C0bbb4D97a0a3382f205B7',
|
|
|
|
vegaTokenAddress: '0x67175Da1D5e966e40D11c4B2519392B2058373de',
|
|
|
|
},
|
2022-06-28 18:07:31 +00:00
|
|
|
});
|