2022-06-28 18:07:31 +00:00
|
|
|
const { defineConfig } = require('cypress');
|
|
|
|
|
|
|
|
module.exports = defineConfig({
|
|
|
|
e2e: {
|
2022-09-22 17:40:11 +00:00
|
|
|
setupNodeEvents(on, config) {
|
2022-11-30 12:32:01 +00:00
|
|
|
require('@cypress/grep/src/plugin')(config);
|
2022-09-22 17:40:11 +00:00
|
|
|
return config;
|
|
|
|
},
|
2022-06-28 18:07:31 +00:00
|
|
|
baseUrl: 'http://localhost:4200',
|
|
|
|
fileServerFolder: '.',
|
|
|
|
fixturesFolder: false,
|
|
|
|
specPattern: '**/*.cy.{js,jsx,ts,tsx}',
|
2022-09-22 17:40:11 +00:00
|
|
|
supportFile: './src/support/index.js',
|
2022-09-22 14:07:18 +00:00
|
|
|
video: false,
|
2022-06-28 18:07:31 +00:00
|
|
|
videosFolder: '../../dist/cypress/apps/trading-e2e/videos',
|
2022-07-08 12:54:56 +00:00
|
|
|
videoUploadOnPasses: false,
|
2022-06-28 18:07:31 +00:00
|
|
|
screenshotsFolder: '../../dist/cypress/apps/trading-e2e/screenshots',
|
|
|
|
chromeWebSecurity: false,
|
|
|
|
projectId: 'et4snf',
|
|
|
|
defaultCommandTimeout: 10000,
|
2022-07-14 15:49:20 +00:00
|
|
|
viewportWidth: 1440,
|
|
|
|
viewportHeight: 900,
|
2022-09-02 14:31:30 +00:00
|
|
|
responseTimeout: 50000,
|
2022-09-14 09:05:26 +00:00
|
|
|
requestTimeout: 20000,
|
2023-02-23 14:23:19 +00:00
|
|
|
retries: 2,
|
2023-04-20 11:56:33 +00:00
|
|
|
testIsolation: false,
|
2022-06-28 18:07:31 +00:00
|
|
|
},
|
|
|
|
env: {
|
2022-10-04 22:24:27 +00:00
|
|
|
ETHERSCAN_URL: 'https://sepolia.etherscan.io',
|
|
|
|
ETHEREUM_CHAIN_ID: 11155111,
|
2022-10-14 08:15:34 +00:00
|
|
|
TRADING_MODE_LINK:
|
2022-11-07 18:12:40 +00:00
|
|
|
'https://docs.vega.xyz/testnet/concepts/trading-on-vega/trading-modes#auction-type-liquidity-monitoring',
|
2022-09-22 17:40:11 +00:00
|
|
|
grepTags: '@regression @smoke @slow',
|
|
|
|
grepFilterSpecs: true,
|
|
|
|
grepOmitFiltered: true,
|
2023-01-25 07:21:17 +00:00
|
|
|
txTimeout: { timeout: 70000 },
|
2022-06-28 18:07:31 +00:00
|
|
|
},
|
|
|
|
});
|