copay-crown
Version:
A Secure Crown Wallet
15 lines (12 loc) • 381 B
text/typescript
import { browser, by, element } from 'protractor';
import { takeScreenshot } from './screenshots';
describe('Copay', () => {
beforeEach(() => {
browser.get('');
});
it('Should display the logo on the landing view', async () => {
takeScreenshot('landing');
const present = await element(by.css('#logo')).isPresent();
expect(present).toEqual(true);
});
});