-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Introduce cypress tests * Fix manusa/actions-setup-minikube version * Downgrade K8s version * Fix while loop * Wait for resources to be available before verifying them * Wait for resources to be available before verifying them * Wait for resources to be available before verifying them * Wait for resources to be available before verifying them * Wait for resources to be available before verifying them * Wait for resources to be available before verifying them * Enrich operator yaml * Add basic cypress test * Fix CYPRESS_BASE_URL generation * Fix CYPRESS_BASE_URL generation * Change name of tests * Change name of tests * Restore aria-label * Use custom application container * Split generation of container images * Split generation of container images * Split generation of container images * Split generation of container images * Split generation of container images * Split generation of container images * Split generation of container images * Split generation of container images * Split generation of container images * Split generation of container images * Split generation of container images * Split generation of container images * Split generation of container images * Split generation of container images * Use custom registry * Use custom registry * Use custom registry * Use custom registry * Use custom registry * Use custom registry * Use custom registry * Use custom registry * Use custom registry * Use custom registry * Use custom registry * Use custom registry * Use custom registry * Use custom registry * Use custom registry * Use custom registry * Test local running test * Test local running test * Test local running test * Test local running test * Test local running test * Test local running test * Test local running test * Enhance release pipeline
- Loading branch information
1 parent
3c1af7a
commit 10b5888
Showing
21 changed files
with
661 additions
and
87 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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import { defineConfig } from "cypress"; | ||
|
||
export default defineConfig({ | ||
e2e: { | ||
baseUrl: "http://localhost:3000", | ||
setupNodeEvents(on, config) { | ||
// implement node event listeners here | ||
}, | ||
}, | ||
}); |
This file was deleted.
Oops, something went wrong.
22 changes: 22 additions & 0 deletions
22
application/src/main/webapp/cypress/e2e/models/consulta.ts
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,22 @@ | ||
/// <reference types="cypress" /> | ||
|
||
export class ConsultaPage { | ||
openPage(): void { | ||
// Interceptors | ||
cy.intercept("GET", "/api/contribuyentes/*").as("getContribuyentes"); | ||
|
||
// Open page | ||
cy.visit("#/"); | ||
} | ||
|
||
consultar(numeroDocumento: string): void { | ||
this.openPage(); | ||
|
||
cy.get("input[name='filterText']") | ||
.clear() | ||
.type(numeroDocumento) | ||
.type("{enter}"); | ||
|
||
cy.wait("@getContribuyentes"); | ||
} | ||
} |
Oops, something went wrong.