Skip to content

Commit

Permalink
Remove duplicated test (#1715)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jym77 authored Nov 20, 2024
1 parent 5534083 commit b290553
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions packages/alfa-rules/test/sia-r114/rule.spec.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,22 +66,6 @@ test("evaluate() fails titles who do not describe the content of the document",
);
});

test("evaluate() can't tell if questions are left unanswered", async (t) => {
t.deepEqual(await evaluate(R114, { document: goodDocument }), [
cantTell(R114, goodTitle),
]);
});

test("evaluate() is inapplicable to documents without title", async (t) => {
const document = h.document([
<html>
<div>Some text in English</div>
</html>,
]);

t.deepEqual(await evaluate(R114, { document }), [inapplicable(R114)]);
});

test("evaluate() only considers the first title", async (t) => {
const title = <title>Opening hours</title>;
const document = h.document([
Expand Down

0 comments on commit b290553

Please sign in to comment.