Skip to content

Commit

Permalink
some more tests
Browse files Browse the repository at this point in the history
Signed-off-by: blam <ben@blam.sh>
  • Loading branch information
benjdlambert committed Apr 9, 2021
1 parent 6305a5a commit 5d8339c
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 1 deletion.
2 changes: 1 addition & 1 deletion cypress/cypress.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"baseUrl": "http://localhost:7000",
"baseUrl": "http://localhost:3000",
"integrationFolder": "./src/integration",
"supportFile": "./src/support",
"fixturesFolder": "./src/fixures",
Expand Down
45 changes: 45 additions & 0 deletions cypress/src/integration/integrations.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
/*
* Copyright 2021 Spotify AB
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/// <reference types="cypress" />
import 'os';

describe('Integrations', () => {
describe('ReadTree', () => {
// it('should work for azure', () => {
// cy.loginAsGuest();

// cy.visit('/catalog-import');

// cy.get('input[name=url]').type(
// 'https://dev.azure.com/backstage-verification/_git/test-repo?path=%2Fnested%2F*',
// );

// cy.contains('Analyze').click();
// });

it('should work for github', () => {
cy.loginAsGuest();

cy.visit('/catalog-import');

cy.get('input[name=url]').type(
'https://github.com/backstage-verification/test-repo',
);

cy.contains('Analyze').click();
});
});
});

0 comments on commit 5d8339c

Please sign in to comment.