Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Draft] Test analysis default mode #1248

Closed
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Resolved merge conflicts
yael-spinner committed Nov 5, 2024
commit a2a10ef334ca3acf67a1f42dda937297a0573fe0
Original file line number Diff line number Diff line change
@@ -33,6 +33,7 @@ describe(["@tier2"], "Test if application language is discovered and tagged corr
login();
});

<<<<<<< HEAD
beforeEach("Load Data", function () {
cy.fixture("application").then(function (appData) {
this.appData = appData;
@@ -58,6 +59,32 @@ describe(["@tier2"], "Test if application language is discovered and tagged corr
sidedrawerTab("Java_language_maven_tooling_quarkus_framework", "Tags");
cy.contains("No tags available", { timeout: 60 * SEC }).should("not.exist");
assertTagsInSection(sectionsTags);
=======
languageDiscoveryData.forEach((data) => {
it(`test ${data.name.split("-").join(" ")}`, function () {
// Automates TCs 582, 583, 584, 585, 585, 586, 587

const sectionsTags = data.sections_tags;
const application = new Application(
getRandomApplicationData(data.name, {
sourceData: {
repoType: data.repoType,
sourceRepo: data.sourceRepo,
},
})
);
application.create();
applicationList.push(application);
cy.wait(2 * SEC);
sidedrawerTab(data.name, "Tags");
cy.contains("No tags available", { timeout: 60 * SEC }).should("not.exist");
assertTagsInSection(sectionsTags);
});
});

afterEach("Persist session", function () {
Application.open(true);
>>>>>>> 770d99d305e231bb9c4c5952e54bbbe6f6b3bc03
});

it("Application written in java and typescript with Maven and NodeJS tooling ", function () {
3 changes: 3 additions & 0 deletions cypress/fixtures/application.json
Original file line number Diff line number Diff line change
@@ -64,6 +64,7 @@
"sourceRepo": "https://github.com/konveyor/tackle-testapp-public",
"branch": "feature/test-java9-removed-packagek"
},
<<<<<<< HEAD
"Java_language_maven_tooling_quarkus_framework": {
"repoType": "Git",
"sourceRepo": "https://github.com/quarkusio/quarkus-super-heroes"
@@ -72,6 +73,8 @@
"repoType": "Git",
"sourceRepo": "https://github.com/pkaul/maven-typescript-example"
},
=======
>>>>>>> 770d99d305e231bb9c4c5952e54bbbe6f6b3bc03
"java-example-app": {
"repoType": "Git",
"sourceRepo": "https://github.com/ibraginsky/book-server"
You are viewing a condensed version of this merge commit. You can view the full changes here.