mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-11 18:32:20 +08:00
25 lines
803 B
Text
25 lines
803 B
Text
|
import {autolink} from '../lib/autolinker';
|
||
|
import fs from 'fs';
|
||
|
import path from 'path';
|
||
|
|
||
|
describe("autolink", () => {
|
||
|
const fixturesDir = path.join(__dirname, 'autolinker-fixtures');
|
||
|
fs.readdirSync(fixturesDir).filter(filename =>
|
||
|
filename.indexOf('-in.html') !== -1
|
||
|
).forEach((filename) => {
|
||
|
it(`should properly autolink a variety of email bodies ${filename}`, () => {
|
||
|
const div = document.createElement('div');
|
||
|
const inputPath = path.join(fixturesDir, filename);
|
||
|
const expectedPath = inputPath.replace('-in', '-out');
|
||
|
|
||
|
const input = fs.readFileSync(inputPath).toString();
|
||
|
const expected = fs.readFileSync(expectedPath).toString();
|
||
|
|
||
|
div.innerHTML = input;
|
||
|
autolink({body: div});
|
||
|
|
||
|
expect(div.innerHTML).toEqual(expected);
|
||
|
});
|
||
|
});
|
||
|
});
|