workadventure/front/tests/Phaser/Game/HtmlUtilsTest.ts

21 lines
780 B
TypeScript
Raw Normal View History

import "jasmine";
import {HtmlUtils} from "../../../src/WebRtc/HtmlUtils";
describe("urlify()", () => {
2021-02-11 18:03:14 +01:00
// FIXME: we need to add PhantomJS to have a good mock for "document".
/*it("should transform an url into a link", () => {
const text = HtmlUtils.urlify('foo https://google.com bar');
expect(text).toEqual('foo <a href="https://google.com" target="_blank" style=":visited {color: white}">https://google.com</a> bar');
});
it("should not transform a normal text into a link", () => {
const text = HtmlUtils.urlify('hello');
2021-02-11 18:03:14 +01:00
expect(text).toEqual('hello');
});
2021-02-11 18:03:14 +01:00
it("should escape HTML", () => {
const text = HtmlUtils.urlify('<h1>boo</h1>');
expect(text).toEqual('&lt;h1&gt;boo&lt;/h1&gt;');
});*/
});