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
|
2020-05-12 19:59:36 +00:00
|
|
|
on("before:browser:launch", (browser = {}, launchOptions) => {
|
|
|
|
|
if (browser.name === "chrome") {
|
|
|
|
|
launchOptions.args.push("--disable-dev-shm-usage");
|
|
|
|
|
return launchOptions;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return launchOptions;
|
|
|
|
|
});
|
2020-07-16 05:50:46 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 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;
|
|
|
|
|
},
|
|
|
|
|
});
|
2020-03-27 09:02:11 +00:00
|
|
|
};
|