Files
redash/client/cypress/integration/user/user_list_spec.js
2019-03-24 11:24:59 -03:00

15 lines
291 B
JavaScript

describe('User List', () => {
beforeEach(() => {
cy.login();
cy.visit('/users');
});
it('renders the page and takes a screenshot', () => {
cy.getByTestId('TimeAgo').then(($timeAgo) => {
$timeAgo.text('an hour ago');
});
cy.percySnapshot('Users');
});
});