Update Liquid test data

This commit is contained in:
Felipe Knorr Kuhn 2021-08-17 16:49:34 -07:00
parent 278c2b9aae
commit d7cf2b37d5

View File

@ -60,7 +60,7 @@ describe('Liquid', () => {
it('shows the assets screen', () => {
cy.visit(`${baseModule}/assets`);
cy.waitForSkeletonGone();
cy.get('table tr').should('have.length', 5);
cy.get('table tr').should('have.length.at.least', 5);
});
it('allows searching assets', () => {
@ -74,7 +74,7 @@ describe('Liquid', () => {
it('shows a specific asset ID', () => {
cy.visit(`${baseModule}/assets`);
cy.waitForSkeletonGone();
cy.get('.container-xl input').click().type('Liquid CAD').then(() => {
cy.get('.container-xl input').click().type('Liquid AUD').then(() => {
cy.get('table tr td:nth-of-type(1) a').click();
});
});