Files
redash/cypress/integration/user/user_list_spec.js
Gabriel Dutra 2c705712fc Fixes to Percy (#3440)
* Add check for repository url

* Use CIRCLE_REPOSITORY_URL directly

* Change percy waiting to be with resources instead of time

* Add data sources types resource to Edit Data Source + eslint fixes

* Separate Page Screenshots in different spec files
2019-02-18 16:30:48 -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');
});
});