From 8d0378990debef83295fd546dfd825646444e78e Mon Sep 17 00:00:00 2001 From: fbanados Date: Mon, 24 Jun 2024 19:10:41 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=A4=96=F0=9F=A7=B9=20reformat=20JavaScrip?= =?UTF-8?q?t=20files=20[skip=20ci]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cypress/integration/crkeng/paradigm.spec.js | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/cypress/integration/crkeng/paradigm.spec.js b/cypress/integration/crkeng/paradigm.spec.js index f915a68b9..f7eacedcb 100644 --- a/cypress/integration/crkeng/paradigm.spec.js +++ b/cypress/integration/crkeng/paradigm.spec.js @@ -16,10 +16,10 @@ describe("I want to search for a Cree word and see its inflectional paradigm", ( lemma: "mîcisow", inflections: ["nimîcison", "kimîcison", "ê-mîcisoyit"], }, - { - pos: "VTI", - lemma: "mîciw", - inflections: ["nimîcin", "mîciwak", "ê-mîciniwahk"] + { + pos: "VTI", + lemma: "mîciw", + inflections: ["nimîcin", "mîciwak", "ê-mîciniwahk"], }, { pos: "VII", lemma: "nîpin", inflections: ["nîpin", "ê-nîpihk"] }, { pos: "NDA", lemma: "nôhkom", inflections: ["kôhkom", "ohkoma"] }, @@ -36,7 +36,11 @@ describe("I want to search for a Cree word and see its inflectional paradigm", ( for (let { pos, lemma, inflections } of testCases) { it(`should display the paradigm for a word belonging to the ${pos} word class`, () => { cy.visitSearch(lemma); - cy.get("[data-cy=search-results]").contains(pos).closest("[data-cy=search-result]").contains("a", lemma).click(); + cy.get("[data-cy=search-results]") + .contains(pos) + .closest("[data-cy=search-result]") + .contains("a", lemma) + .click(); cy.get("[data-cy=paradigm]").as("paradigm");