-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Replace homepage textfield by rendered table * Install vue-json-pretty plugin * Replace json textfield with rendered preview * Remove deprectated stringify methods * I can admit defeat * Fix index page-component test * [ENH] change description styling to align with cat. page
- Loading branch information
Showing
4 changed files
with
47 additions
and
36 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
describe("On My homepage", () => { | ||
it("I can upload some data", () => { | ||
cy.visit('/'); | ||
// Before I load anything, I have a little notification that my preview will | ||
// appear once I upload a table | ||
// Load a table | ||
cy.get('[data-cy="data-table-selector"]').get('input').selectFile('cypress/fixtures/examples/good/example_synthetic.tsv', { force: true }); | ||
|
||
/* ==== Generated with Cypress Studio ==== */ | ||
cy.get('[data-cy="data-dictionary-selector"] > .row > form > .file-selector-button').click(); | ||
cy.get('[data-cy="data-dictionary-selector"] > .row > form > .file-selector-button > input').selectFile('cypress/fixtures/examples/good/example_synthetic_participants.json', { force: true }); | ||
/* ==== End Cypress Studio ==== */ | ||
}); | ||
}); |
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 |
---|---|---|
|
@@ -25,7 +25,6 @@ export default { | |
|
||
// Global CSS: https://go.nuxtjs.dev/config-css | ||
css: [ | ||
|
||
"@/assets/css/main.css" | ||
], | ||
|
||
|
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