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
// ******************* | |
// Contributors: | |
// - Andrew Smith (@AndrewSouthpaw) | |
// - Shaun Mosley (@Shaunm44) | |
// ******************* | |
// This setup will allow you to synchronize personal events from one calendar (the "secondary calendar") | |
// to another calendar, e.g. work (the "primary calendar"), but obfuscate the details. Then your coworkers | |
// know when you're busy but don't get to see the personal details. | |
// |
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
const cypress = require('cypress'); | |
const program = require('commander'); | |
const config = require('./__tests__/ui/support/devices'); | |
const OSconfig = require('./__tests__/ui/support/os'); | |
program | |
.version('0.1.0') | |
.option('-d, --device <device>', 'run tests on device: <device>') | |
.option('-osV, --osVersion <osVersion>', 'adds device OS version') | |
.option('-r, --record', 'records the run in the Cypress dashboard') |
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
/* eslint-env node */ | |
/* eslint-disable no-console, dot-notation */ | |
const fse = require('fs-extra'); | |
const readline = require('readline'); | |
// const platform = 'mw_less'; | |
// const platform = 'mw_scss'; | |
const platform = 'cosmos'; |