mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-09 08:45:55 +02:00
55 lines
968 B
TypeScript
55 lines
968 B
TypeScript
import htmlUtils, { extractHtmlBody } from './htmlUtils';
|
|
|
|
describe('htmlUtils', () => {
|
|
|
|
test('should strip off HTML', () => {
|
|
const testCases = [
|
|
[
|
|
'',
|
|
'',
|
|
],
|
|
[
|
|
'<b>test</b>',
|
|
'test',
|
|
],
|
|
[
|
|
'Joplin®',
|
|
'Joplin®',
|
|
],
|
|
[
|
|
'<b>test</b>',
|
|
'<b>test</b>',
|
|
],
|
|
];
|
|
|
|
for (const t of testCases) {
|
|
const [input, expected] = t;
|
|
const actual = htmlUtils.stripHtml(input);
|
|
expect(actual).toBe(expected);
|
|
}
|
|
});
|
|
|
|
test('should extract the HTML body', () => {
|
|
const testCases: [string, string][] = [
|
|
[
|
|
'Just <b>testing</b>',
|
|
'Just <b>testing</b>',
|
|
],
|
|
[
|
|
'',
|
|
'',
|
|
],
|
|
[
|
|
'<html><head></head><meta bla><body>Here is the body<img src="test.png"/></body></html>',
|
|
'Here is the body<img src="test.png"/>',
|
|
],
|
|
];
|
|
|
|
for (const [input, expected] of testCases) {
|
|
const actual = extractHtmlBody(input);
|
|
expect(actual).toBe(expected);
|
|
}
|
|
});
|
|
|
|
});
|