Skip to content

Commit

Permalink
Fix format
Browse files Browse the repository at this point in the history
Signed-off-by: TalyaNaima <[email protected]>
  • Loading branch information
TalyaNaima authored and TalyaNaima committed Oct 31, 2024
1 parent 1a86025 commit f4f34bf
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
13 changes: 11 additions & 2 deletions cypress/e2e/models/migration/controls/tagcategory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,16 @@ import {
submitForm,
} from "../../../../utils/utils";
import { navMenu, navTab } from "../../../views/menu.view";
import { button, controls, deleteAction, migration, SEC, tags, tdTag, trTag } from "../../../types/constants";
import {
button,
controls,
deleteAction,
migration,
SEC,
tags,
tdTag,
trTag,
} from "../../../types/constants";
import { createTagCategoryButton, rankInput } from "../../../views/tags.view";
import * as commonView from "../../../views/common.view";
import { clickTags, fillName } from "./tags";
Expand Down Expand Up @@ -115,7 +124,7 @@ export class TagCategory {
delete(cancel = false): void {
// Opening tags list only if another tab is opened
TagCategory.openList();

clickItemInKebabMenu(this.name, deleteAction);
if (cancel) {
click(commonView.confirmCancelButton);
Expand Down
2 changes: 1 addition & 1 deletion cypress/e2e/models/migration/controls/tags.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export class Tag {
tagCategory: string;

constructor(name: string, tagCategory: string) {
this.name = name
this.name = name;
this.tagCategory = tagCategory;
}

Expand Down

0 comments on commit f4f34bf

Please sign in to comment.