fix: accidental non-linted files in repo (#3635)

Signed-off-by: kushthedude <kushthedude@gmail.com>
This commit is contained in:
Kush Trivedi 2021-02-15 00:00:23 +05:30 committed by GitHub
parent df2fbbc1f6
commit 1b02446b5c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 7 deletions

View File

@ -5,20 +5,20 @@ describe(__filename, function () {
.should('have.class', 'data-table-flag-off')
.click();
cy.assertNotificationContainingText('Flag row 1');
cy.get('.data-table tr:nth-child(2) td:nth-child(2) a')
.should('have.class', 'data-table-flag-off')
.click();
.click();
cy.assertNotificationContainingText('Flag row 2');
cy.get('.data-table tr:nth-child(1) td:nth-child(2) a')
.should('have.class', 'data-table-flag-on')
.click();
cy.assertNotificationContainingText('Unflag row 1');
cy.get('.data-table tr:nth-child(2) td:nth-child(2) a')
.should('have.class', 'data-table-flag-on')
.click();
.click();
cy.assertNotificationContainingText('Unflag row 2');
});
});

View File

@ -5,7 +5,7 @@ describe(__filename, function () {
.should('have.class', 'data-table-star-off')
.click();
cy.assertNotificationContainingText('Star row 1');
cy.get('.data-table tr:nth-child(2) td:nth-child(1) a')
.should('have.class', 'data-table-star-off')
.click();
@ -15,7 +15,7 @@ describe(__filename, function () {
.should('have.class', 'data-table-star-on')
.click();
cy.assertNotificationContainingText('Unstar row 1');
cy.get('.data-table tr:nth-child(2) td:nth-child(1) a')
.should('have.class', 'data-table-star-on')
.click();