mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-01-04 07:10:06 +08:00
25 lines
853 B
JavaScript
25 lines
853 B
JavaScript
import fs from 'fs';
|
|
import path from 'path';
|
|
import { autolink } from '../lib/autolinker';
|
|
|
|
describe('autolink', function autolinkSpec() {
|
|
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);
|
|
});
|
|
});
|
|
});
|