const { login, navigateToLogin, logout, tapBack } = require('../../helpers/app');
const data = require('../../data');
describe('Server history', () => {
before(async () => {
await device.launchApp({ permissions: { notifications: 'YES' }, delete: true });
});
describe('Usage', () => {
it('should login, save server as history and logout', async () => {
await navigateToLogin();
await login(data.users.regular.username, data.users.regular.password);
await logout();
await waitFor(element(by.id('new-server-view')))
.toBeVisible()
.withTimeout(60000);
it('should show servers history', async () => {
await element(by.id('new-server-view-input')).tap();
await waitFor(element(by.id(`server-history-${data.server}`)))
.withTimeout(2000);
it('should tap on a server history and navigate to login', async () => {
await element(by.id(`server-history-${data.server}`)).tap();
await waitFor(element(by.id('login-view-email')))
.withTimeout(5000);
await expect(element(by.label(data.users.regular.username).withAncestor(by.id('login-view-email'))));
it('should delete server from history', async () => {
await tapBack();
await waitFor(element(by.id('workspace-view')))
await element(by.id(`server-history-delete-${data.server}`)).tap();
.toBeNotVisible()