c3e70d6457
* test: network parameter tests * test: lint * test: add comments * test: more guidance notes * test: disable theme check whilst investigating * test: fix failing test for console lite * test: attempt 2 to fix console lite error only in CI * test: lint * test: remove check * test: update conflict function
41 lines
1.3 KiB
JavaScript
41 lines
1.3 KiB
JavaScript
const { defineConfig } = require('cypress');
|
|
|
|
module.exports = defineConfig({
|
|
projectId: 'et4snf',
|
|
|
|
e2e: {
|
|
setupNodeEvents(on, config) {
|
|
require('cypress-grep/src/plugin')(config);
|
|
return config;
|
|
},
|
|
baseUrl: 'http://localhost:3000',
|
|
fileServerFolder: '.',
|
|
fixturesFolder: './src/fixtures',
|
|
specPattern: '**/*.cy.{js,jsx,ts,tsx}',
|
|
modifyObstructiveCode: false,
|
|
supportFile: './src/support/index.js',
|
|
video: false,
|
|
videoUploadOnPasses: false,
|
|
videosFolder: '../../dist/cypress/apps/explorer-e2e/videos',
|
|
screenshotsFolder: '../../dist/cypress/apps/explorer-e2e/screenshots',
|
|
chromeWebSecurity: false,
|
|
viewportWidth: 1440,
|
|
viewportHeight: 900,
|
|
},
|
|
env: {
|
|
environment: 'CUSTOM',
|
|
networkQueryUrl: 'http://localhost:3028/query',
|
|
ethUrl: 'https://sepolia.infura.io/v3/4f846e79e13f44d1b51bbd7ed9edefb8',
|
|
commitHash: 'dev',
|
|
CYPRESS_TEARDOWN_NETWORK_AFTER_FLOWS: true,
|
|
tsConfig: 'tsconfig.json',
|
|
grepTags: '@regression @smoke @slow',
|
|
grepFilterSpecs: true,
|
|
grepOmitFiltered: true,
|
|
vegaWalletName: 'capsule_wallet',
|
|
vegaWalletLocation: '~/.vegacapsule/testnet/wallet',
|
|
vegaWalletPublicKey:
|
|
'02eceaba4df2bef76ea10caf728d8a099a2aa846cced25737cccaa9812342f65',
|
|
},
|
|
});
|