Skip to content
This repository was archived by the owner on May 6, 2024. It is now read-only.

Commit c14bb85

Browse files
nehemiah-abugagithub-actions[bot]
authored andcommitted
[MegaLinter] Apply linters fixes
1 parent e8252ef commit c14bb85

8 files changed

+10
-10
lines changed

cypress/e2e/ui/accordions.cy.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import * as ES_BENEFITS_SSA_RETIREMENT_BENEFITS_CHILD_DISABLED from "../../../lo
1010
import * as EN_LIFE_EVENTS_DISABILITY from "../../../locales/en/life-events/disability.json"
1111
import * as EN_LIFE_EVENTS_RETIREMENT from "../../../locales/en/life-events/retirement.json"
1212

13-
describe("Validate opening and closing of accordion cards", { browser: '!webkit' }, () => {
13+
describe("Validate opening and closing of accordion cards", { browser: "!webkit" }, () => {
1414
beforeEach(() => {
1515
cy.visit("/")
1616
})

cypress/e2e/ui/footer.cy.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const footerContentES = ES_DATA.footer
1111
const footerContentEN = EN_DATA.footer
1212
const sitePages = SITE_PAGES_DATA.sitePages
1313

14-
describe("Footer Tests", { browser: '!webkit' }, () => {
14+
describe("Footer Tests", { browser: "!webkit" }, () => {
1515
sitePages.forEach((sitePage) => {
1616
it(`Validate footer content mapping in ${sitePage.name}`, () => {
1717
cy.visit({ url: sitePage.route })

cypress/e2e/ui/header.cy.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import { pages } from "../../support/page-objects/pages.js"
44

5-
describe("Header Tests", { browser: '!webkit' }, () => {
5+
describe("Header Tests", { browser: "!webkit" }, () => {
66
beforeEach(() => {
77
cy.visit("/")
88
})

cypress/e2e/ui/links.cy.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import * as SITE_PAGES_DATA from "../../fixtures/site-pages.json"
44

55
const sitePages = SITE_PAGES_DATA.sitePages
66

7-
describe("Verify correct status code when user navigates links", { browser: '!webkit' }, () => {
7+
describe("Verify correct status code when user navigates links", { browser: "!webkit" }, () => {
88
sitePages.forEach((sitePage) => {
99
it(`Verify success status code response for links in ${sitePage.name} `, () => {
1010
cy.visit({ url: sitePage.route })

cypress/e2e/ui/open-all-close-all-button.cy.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import * as SITE_PAGES_DATA from "../../fixtures/site-pages.json"
55

66
const sitePages = SITE_PAGES_DATA.sitePages
77

8-
describe("Validate Open All button functionality", { browser: '!webkit' }, () => {
8+
describe("Validate Open All button functionality", { browser: "!webkit" }, () => {
99
sitePages.forEach((sitePage) => {
1010
it(`Verify Open All button should open all accordion cards in ${sitePage.name}`, () => {
1111
cy.visit({ url: sitePage.route })
@@ -17,7 +17,7 @@ describe("Validate Open All button functionality", { browser: '!webkit' }, () =>
1717
})
1818
})
1919

20-
describe("Validate Close All button functionality", { browser: '!webkit' }, () => {
20+
describe("Validate Close All button functionality", { browser: "!webkit" }, () => {
2121
sitePages.forEach((sitePage) => {
2222
it(`Verify Close All button should close all accordion cards in ${sitePage.name}`, () => {
2323
cy.visit({ url: sitePage.route })

cypress/e2e/ui/print-selections.cy.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import { pages } from "../../support/page-objects/pages.js"
44
import * as EN_CRITERIA from "../../../locales/en/criteria.json"
55

6-
describe("Select criteria and print selections", { browser: '!webkit' }, () => {
6+
describe("Select criteria and print selections", { browser: "!webkit" }, () => {
77
beforeEach(() => {
88
cy.visit("/")
99
})

cypress/e2e/ui/sort-benefits-list.cy.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { pages } from "../../support/page-objects/pages.js"
44
import * as EN_CRITERIA from "../../../locales/en/criteria.json"
55
import * as EN_BENEFITS_COVID_19 from "../../../locales/en/benefits/fema-covid-19-funeral-assistance.json"
66

7-
describe("Sort benefits accordion list using Covid 19 filter", { browser: '!webkit' }, () => {
7+
describe("Sort benefits accordion list using Covid 19 filter", { browser: "!webkit" }, () => {
88
beforeEach(() => {
99
cy.visit("/")
1010
})

cypress/e2e/ui/ui-render-content.cy.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import * as EN_LIFE_EVENTS_RETIREMENT from "../../../locales/en/life-events/reti
1313

1414
const sitePages = SITE_PAGES_DATA.sitePages
1515

16-
describe("Verify UI is rendering content correctly", { browser: '!webkit' }, () => {
16+
describe("Verify UI is rendering content correctly", { browser: "!webkit" }, () => {
1717
sitePages.forEach((sitePage) => {
1818
it(`Verify ${sitePage.name} is rendering content correctly instead of dot notation value on checkbox labels`, () => {
1919
cy.visit({ url: sitePage.route })
@@ -25,7 +25,7 @@ describe("Verify UI is rendering content correctly", { browser: '!webkit' }, ()
2525
})
2626
})
2727

28-
describe("Verify Benefits Card content is displaying correctly", { browser: '!webkit' }, () => {
28+
describe("Verify Benefits Card content is displaying correctly", { browser: "!webkit" }, () => {
2929
beforeEach(() => {
3030
cy.visit("/")
3131
})

0 commit comments

Comments
 (0)