-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from ubq-testing/feat/config-installer
Feat/config installer
- Loading branch information
Showing
31 changed files
with
3,736 additions
and
4,676 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,40 @@ | ||
<!--- | ||
Insert the issue number of the task you are completing if within this repository, or paste the url of the task. | ||
// EXAMPLE | ||
Resolves https://github.com/ubiquity/ts-template/issues/75 | ||
--> | ||
|
||
Resolves # | ||
|
||
<!-- | ||
- You must link the issue number e.g. "Resolves #1234" | ||
- Please do not replace the keyword "Resolves" https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue#linking-a-pull-request-to-an-issue-using-a-keyword | ||
<!--- | ||
We advise that you give a brief description of your changes, either that it meets | ||
the specification exactly as described or what you had to do outwith the spec to resolve it. | ||
This is not required but again, it is advised. | ||
// EXAMPLE | ||
Changes: | ||
- Refactored the authentication mechanism because the auth token wasn't being properly stored. | ||
- Removed unnecessary calls to render the login button. | ||
--> | ||
|
||
Changes: | ||
|
||
- ... | ||
|
||
<!--- | ||
NOTICE: This is required for all pull requests and will be requested by reviewers if not present. | ||
- Include a screenshot/video or some other visual confirmation that your changes solve the task | ||
- If this is not applicable, build a unit test to prove it works as intended | ||
// EXAMPLE | ||
QA: | ||
- <url to your plugin fork or test issue in your own org showcasing the end result> | ||
- <screenshot of some kind of UI fix> | ||
- <E2E video of using the software> | ||
--> | ||
|
||
QA: | ||
|
||
- ... |
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 |
---|---|---|
|
@@ -11,3 +11,4 @@ static/dist | |
coverage | ||
junit.xml | ||
cypress/screenshots | ||
test-dashboard.md |
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,11 +1,8 @@ | ||
import { defineConfig } from "cypress"; | ||
const { defineConfig } = require("cypress"); | ||
|
||
export default defineConfig({ | ||
module.exports = defineConfig({ | ||
e2e: { | ||
setupNodeEvents() { | ||
// implement node event listeners here | ||
}, | ||
experimentalStudio: true, | ||
baseUrl: "http://localhost:8080", | ||
baseUrl: "http://127.0.0.1:8080", | ||
}, | ||
}); |
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,12 +1,3 @@ | ||
describe("Homepage tests", () => { | ||
it("Console is cleared of errors and warnings", () => { | ||
cy.visit("/", { | ||
onBeforeLoad(win) { | ||
cy.stub(win.console, "error").as("consoleError"); | ||
}, | ||
}); | ||
cy.get("@consoleError").should("not.be.called"); | ||
cy.get("body").should("exist"); | ||
cy.get("h1").should("exist"); | ||
}); | ||
it("todo", () => {}); | ||
}); |
Oops, something went wrong.