Most of programs will not accept an email using just @localhost as domain.
So, edit /etc/hosts
file to make the domain localhost.com point to your machine, including this content to the file:
127.0.0.1 localhost.com
<?php | |
class Tx_Polarmedia_Controller_MediaController extends Tx_Extbase_MVC_Controller_ActionController { | |
/** | |
* @var defaultViewObjectName use custom extended Tx_Fluid_View_TemplateView | |
*/ | |
protected $defaultViewObjectName = 'Tx_Pnutility_View_VariantView'; | |
public function teaserAction() { | |
$variant = $this->settings['variant']); // or anything else(userState...) |
Most of programs will not accept an email using just @localhost as domain.
So, edit /etc/hosts
file to make the domain localhost.com point to your machine, including this content to the file:
127.0.0.1 localhost.com
#!/usr/bin/env node | |
const util = require('util'); | |
const exec = util.promisify(require('child_process').exec); | |
async function systemVersionInfos() { | |
const { stdout: nodeVersion } = await exec('node --version'); | |
console.log('$ node --version'); | |
console.log(nodeVersion); |
In the index.js or the root file of your cypress/support folder,