mirror of
https://github.com/getredash/redash.git
synced 2026-05-10 15:00:16 -04:00
* 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
15 lines
291 B
JavaScript
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');
|
|
});
|
|
});
|