copay/e2e/app.e2e-spec.ts

15 lines
385 B
TypeScript

import { browser, element, by } from 'protractor';
import { takeScreenshot } from './screenshots';
describe('Copay', () => {
beforeEach(() => {
browser.get('');
});
it('Should display the logo on the landing view', async () => {
takeScreenshot('landing.png');
const present = await element(by.css('#logo')).isPresent();
expect(present).toEqual(true);
});
});