delightful-machine-77737
09/27/2022, 2:51 PMfreezing-carpenter-51131
09/28/2022, 10:37 AMproud-breakfast-29892
09/28/2022, 2:34 PMhttps://rom.my.universe.cdp.gigya.comproud-breakfast-29892
09/28/2022, 2:35 PMproud-breakfast-29892
09/28/2022, 2:35 PMprehistoric-restaurant-72560
09/28/2022, 3:44 PMkind-minister-59159
09/28/2022, 5:52 PMbest-flower-17510
09/28/2022, 5:55 PMproud-breakfast-29892
09/29/2022, 10:42 AMacceptable-hamburger-48790
09/29/2022, 10:44 AMproud-breakfast-29892
09/29/2022, 10:44 AMmysterious-belgium-25713
09/29/2022, 10:45 AMjs
const { defineConfig } = require('cypress');
const {
install,
ensureBrowserFlags
} = require('@neuralegion/cypress-har-generator');
module.exports = defineConfig({
// setupNodeEvents can be defined in either
// the e2e or component configuration
e2e: {
setupNodeEvents(on, config) {
install(on, config);
on('before:browser:launch', (browser = {}, launchOptions) => {
ensureBrowserFlags(browser, launchOptions);
return launchOptions;
});
}
}
});proud-breakfast-29892
09/29/2022, 10:53 AMproud-breakfast-29892
09/29/2022, 10:53 AMsome-thailand-3202
09/29/2022, 12:22 PMmysterious-belgium-25713
09/29/2022, 12:27 PMsome-thailand-3202
09/29/2022, 12:28 PMearly-motherboard-68721
09/29/2022, 3:05 PMearly-motherboard-68721
09/29/2022, 3:06 PMearly-motherboard-68721
09/29/2022, 3:06 PMmysterious-belgium-25713
09/29/2022, 3:22 PMearly-motherboard-68721
09/29/2022, 3:26 PMearly-motherboard-68721
09/29/2022, 3:26 PMfaint-kangaroo-63063
09/29/2022, 3:31 PMearly-motherboard-68721
09/29/2022, 3:32 PMfaint-kangaroo-63063
09/29/2022, 3:36 PMdescribe and then context blocks, for readability). but it has nothing to do with running tests in parallel 🙂 in your example above, you will have 2 describe blocks, under one main describe block, which can be a good plan, in case you need it; just to make sure you are aware, you will still need to add some it blocks as well (these are the tests, the describe act more as the test suite). if you want more details about how to organize your Cy tests and how these work, please see: https://docs.cypress.io/guides/core-concepts/writing-and-organizing-testsfaint-kangaroo-63063
09/29/2022, 3:38 PMproud-breakfast-29892
09/29/2022, 3:43 PMfaint-kangaroo-63063
09/29/2022, 3:47 PMproud-breakfast-29892
09/29/2022, 3:47 PM