-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adding domain & container tests (#6221)
- Loading branch information
1 parent
85268d6
commit abe6781
Showing
3 changed files
with
159 additions
and
68 deletions.
There are no files selected for viewing
16 changes: 16 additions & 0 deletions
16
smoke-test/tests/cypress/cypress/integration/containers/containers.js
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,16 @@ | ||
describe("containers", () => { | ||
it("can see elements inside the container", () => { | ||
cy.login(); | ||
cy.visit( | ||
"http://localhost:9002/container/urn:li:container:348c96555971d3f5c1ffd7dd2e7446cb" | ||
); | ||
|
||
cy.contains("jaffle_shop"); | ||
|
||
cy.contains("customers"); | ||
cy.contains("customers_source"); | ||
cy.contains("orders"); | ||
cy.contains("raw_orders"); | ||
cy.contains("1 - 9 of 9"); | ||
}); | ||
}); |
12 changes: 12 additions & 0 deletions
12
smoke-test/tests/cypress/cypress/integration/domains/domains.js
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,12 @@ | ||
describe("domains", () => { | ||
it("can see elements inside the domain", () => { | ||
cy.login(); | ||
cy.visit( | ||
"http://localhost:9002/domain/urn:li:domain:marketing/Entities?is_lineage_mode=false" | ||
); | ||
|
||
cy.contains("Marketing"); | ||
cy.contains("SampleCypressKafkaDataset"); | ||
cy.contains("1 - 1 of 1"); | ||
}); | ||
}); |
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