Skip to content

Instantly share code, notes, and snippets.

View lexmarin's full-sized avatar
🎩

Alexandr Marinko lexmarin

🎩
View GitHub Profile
### Keybase proof
I hereby claim:
* I am lexmarin on github.
* I am lexmarin (https://keybase.io/lexmarin) on keybase.
* I have a public key ASAS-3KOdr0vzTN0vnTNRl_BYIC-eP8_d3bPLxiV97pyNQo
To claim this, I am signing this object:
@lexmarin
lexmarin / cypress_test_example.js
Last active February 23, 2018 10:14
Cypress testing scenario example
import { signIn, signOut } from '../shared/auth';
import { getRelativePath } from '../shared/utils';
import { WelcomeSplashPage } from '../pages/onboarding/index';
describe('PB Application walk through suite', () => {
signIn();
describe('Welcome page', () => {
it('should open welcome screen', () => {
cy.visit(getRelativePath(WelcomeSplashPage.url));