yoastseo-dep
Version:
Yoast clientside page analysis
17 lines (14 loc) • 813 B
JavaScript
import getParticiples from "../../../../../../src/languageProcessing/languages/el/helpers/internal/getParticiples";
describe( "Test for matching Greek participles", function() {
it( "returns matched passive participles.", function() {
// Passive participle: αγαπημένη.
const sentence = "Η γάτα είναι αγαπημένη.";
const foundParticiples = getParticiples( sentence );
expect( foundParticiples ).toEqual( [ "αγαπημένη" ] );
} );
it( "returns an empty array when no participle/passive is matched.", function() {
const sentence = "To καινουργιο αυτοκίνητο μου τρέχει με ενενήντα χιλιόμετρα την ώρα.";
const foundParticiples = getParticiples( sentence );
expect( foundParticiples ).toEqual( [] );
} );
} );