In the index.js or the root file of your cypress/support folder,
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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); |
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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...) |