PromucFlow_constructor/app/client/cypress/plugins/index.js

42 lines
1.2 KiB
JavaScript
Raw Normal View History

2020-03-10 09:38:12 +00:00
/// <reference types="cypress" />
2019-12-12 07:50:53 +00:00
// ***********************************************************
// This example plugins/index.js can be used to load plugins
//
// You can change the location of this file or turn off loading
// the plugins file with the 'pluginsFile' configuration option.
//
// You can read more here:
// https://on.cypress.io/plugins-guide
// ***********************************************************
// This function is called when a project is opened or re-opened (e.g. due to
// the project's config changing)
2020-03-10 09:38:12 +00:00
/**
* @type {Cypress.PluginConfig}
*/
2019-12-12 07:50:53 +00:00
module.exports = (on, config) => {
// `on` is used to hook into various events Cypress emits
// `config` is the resolved Cypress config
on("before:browser:launch", (browser = {}, launchOptions) => {
if (browser.name === "chrome") {
launchOptions.args.push("--disable-dev-shm-usage");
return launchOptions;
}
return launchOptions;
});
/**
* This task logs the message on the CLI terminal. Use with care because it can log sensitive details
* Example usage: cy.task('log', 'This is the message printed to the terminal')
*/
on("task", {
log(message) {
console.log(message);
return null;
},
});
};