66 lines
2.2 KiB
JavaScript
66 lines
2.2 KiB
JavaScript
/* eslint-env node */
|
|
/* eslint global-require: 0, func-names: 0, no-shadow: 0 */
|
|
"use strict";
|
|
const t = require("tap");
|
|
|
|
let H9Y = null;
|
|
t.beforeEach(function setup(done) {
|
|
H9Y = require("../hyphenopoly.module");
|
|
done();
|
|
});
|
|
|
|
t.afterEach(function tearDown(done) {
|
|
H9Y = null;
|
|
delete require.cache[require.resolve("../hyphenopoly.module")];
|
|
done();
|
|
});
|
|
|
|
t.test("use https loader", async function (t) {
|
|
const deHyphenator = await H9Y.config({
|
|
"loader": "https",
|
|
"paths": {
|
|
"maindir": "https://unpkg.com/hyphenopoly@3.1.1/",
|
|
"patterndir": "https://unpkg.com/hyphenopoly@3.1.1/patterns/"
|
|
},
|
|
"require": ["de"]
|
|
});
|
|
t.test("return a function", function (t) {
|
|
t.equal(typeof deHyphenator, "function", typeof deHyphenator);
|
|
t.end();
|
|
});
|
|
t.test("hyphenate one word", function (t) {
|
|
t.equal(deHyphenator("Silbentrennung"), "Sil\u00ADben\u00ADtren\u00ADnung", deHyphenator("Silbentrennung"));
|
|
t.end();
|
|
});
|
|
t.test("hyphenate two words", function (t) {
|
|
t.equal(deHyphenator("Silbentrennung Algorithmus"), "Sil\u00ADben\u00ADtren\u00ADnung Al\u00ADgo\u00ADrith\u00ADmus", deHyphenator("Silbentrennung Algorithmus"));
|
|
t.end();
|
|
});
|
|
t.end();
|
|
});
|
|
|
|
// Need to update to http when hyphenaopoly is available on cdnjs
|
|
t.test("use http loader", async function (t) {
|
|
const deHyphenator = await H9Y.config({
|
|
"loader": "http",
|
|
"paths": {
|
|
"maindir": "http://www.nonsequence.ch/h9y/",
|
|
"patterndir": "http://www.nonsequence.ch/h9y/patterns/"
|
|
},
|
|
"require": ["de"]
|
|
});
|
|
t.test("return a function", function (t) {
|
|
t.equal(typeof deHyphenator, "function", typeof deHyphenator);
|
|
t.end();
|
|
});
|
|
t.test("hyphenate one word", function (t) {
|
|
t.equal(deHyphenator("Silbentrennung"), "Sil\u00ADben\u00ADtren\u00ADnung", deHyphenator("Silbentrennung"));
|
|
t.end();
|
|
});
|
|
t.test("hyphenate two words", function (t) {
|
|
t.equal(deHyphenator("Silbentrennung Algorithmus"), "Sil\u00ADben\u00ADtren\u00ADnung Al\u00ADgo\u00ADrith\u00ADmus", deHyphenator("Silbentrennung Algorithmus"));
|
|
t.end();
|
|
});
|
|
t.end();
|
|
});
|