chore: resolve eslint warnings in cypress/integration/rendering/iconShape.spec.ts

This commit is contained in:
Sidharth Vinod
2025-04-19 10:21:40 +05:30
parent 4535911a3a
commit 2ddc3403de

View File

@@ -14,7 +14,7 @@ looks.forEach((look) => {
directions.forEach((direction) => {
forms.forEach((form) => {
labelPos.forEach((pos) => {
describe(`Test iconShape in ${form ? `${form} form,` : ''} ${look} look and dir ${direction} with label position ${pos ? pos : 'not defined'}`, () => {
describe(`Test iconShape in ${form ? `${form} form,` : ''} ${look} look and dir ${direction} with label position ${pos ?? 'not defined'}`, () => {
it(`without label`, () => {
let flowchartCode = `flowchart ${direction}\n`;
flowchartCode += ` nA --> nAA@{ icon: 'fa:bell'`;