-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Using the cypress action to run tests * Bump version * Fade
- Loading branch information
Showing
7 changed files
with
24 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,21 @@ | ||
// describe('List View', () => { | ||
// before(() => { //Don't need to reset anything | ||
// cy.localMode() | ||
// cy.loadTestData() | ||
// }) | ||
describe('List View', () => { | ||
before(() => { // Don't need to reset anything | ||
cy.localMode() | ||
cy.loadTestData() | ||
}) | ||
|
||
// it('can find a uuid', () => { | ||
// cy.visit('/#/')// Go to the entry page | ||
// cy.get('input[placeholder="Search items"').type('8e71919a-4f03-4fa4-bdce-5767e38ed48e{enter}') | ||
// cy.contains('USB A to USB C cable') | ||
it('can find a uuid', () => { | ||
cy.visit('/#/')// Go to the entry page | ||
cy.get('input[placeholder="Search items"').type('8e71919a-4f03-4fa4-bdce-5767e38ed48e{enter}') | ||
cy.contains('USB A to USB C cable') | ||
|
||
// //Partial uuid | ||
// cy.get('input[placeholder="Search items"').invoke('val', '').type('1a76be8{enter}') | ||
// cy.contains('Dental floss pick') | ||
// Partial uuid | ||
cy.get('input[placeholder="Search items"').invoke('val', '').type('1a76be8{enter}') | ||
cy.contains('Dental floss pick') | ||
|
||
// //Click search with name | ||
// cy.get('input[placeholder="Search items"').invoke('val', '').type('USB A to USB C cable') | ||
// cy.get('.v-btn__content').contains('Search').click() | ||
// cy.contains('8ed48e') | ||
// }) | ||
// }) | ||
// Click search with name | ||
cy.get('input[placeholder="Search items"').invoke('val', '').type('USB A to USB C cable') | ||
cy.get('.v-btn__content').contains('Search').click() | ||
cy.contains('8ed48e') | ||
}) | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters