Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(test): Fix archive e2e test due to default sort by Name #1168

Merged
merged 1 commit into from
Feb 3, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions test/integration/archive/ArchiveViewer.e2e.test.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// <reference types="Cypress" />
describe.skip('Archive Viewer', () => {
describe('Archive Viewer', () => {
const token = Cypress.env('ACCESS_TOKEN');
const fileId = Cypress.env('FILE_ID_ARCHIVE');

Expand All @@ -26,12 +26,16 @@ describe.skip('Archive Viewer', () => {
cy.getByTitle('Preview SDK Sample Archive').within(() => {
cy.get('button').click();
});
// default sort by name
cy.get('.ReactVirtualized__Table__row')
.first()
.contains('Audio.mp3');

// reverse
cy.getByTitle('Name').click();

cy.get('.ReactVirtualized__Table__row')
.first()
.contains('Audio.mp3');
.contains('Preview SDK Sample Excel.xlsx');
});

it('Should show matched item list based on search query', () => {
Expand Down