We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57c65cb commit 735c634Copy full SHA for 735c634
1 file changed
cypress/e2e/repo.cy.js
@@ -10,7 +10,7 @@ describe('Repo', () => {
10
11
describe('Code button for repo row', () => {
12
it('Opens tooltip with correct content and can copy', () => {
13
- const cloneURL = 'http://localhost:8000/finos/test-repo.git';
+ const cloneURL = 'http://localhost:8000/finos/git-proxy.git';
14
const tooltipQuery = 'div[role="tooltip"]';
15
16
cy
@@ -19,8 +19,8 @@ describe('Repo', () => {
19
.should('not.exist');
20
21
22
- // find the entry for finos/test-repo
23
- .get('a[href="/dashboard/repo/test-repo"]')
+ // find the entry for finos/git-proxy
+ .get('a[href="/dashboard/repo/git-proxy"]')
24
// take it's parent row
25
.closest('tr')
26
// find the nearby span containing Code we can click to open the tooltip
0 commit comments