Merge pull request #1520 from mbilker/lint

Correct eslint errors from Travis
This commit is contained in:
Ben Gotow 2016-03-01 14:50:10 -08:00
commit ba07727fc4
2 changed files with 16 additions and 11 deletions

View file

@ -113,7 +113,7 @@ export default class SpellcheckComposerExtension extends ComposerExtension {
// Traverses all of the text nodes within the provided `editor`. If it finds a
// text node with a misspelled word, it splits it, wraps the misspelled word
// with a <spelling> node and updates the selection to account for the change.
static _wrapMisspelledWords = (editor)=> {
static _wrapMisspelledWords = (editor) => {
SpellcheckComposerExtension._whileApplyingSelectionChanges((selectionSnapshot)=> {
const treeWalker = document.createTreeWalker(editor.rootNode, NodeFilter.SHOW_TEXT);
const nodeList = [];
@ -179,14 +179,15 @@ export default class SpellcheckComposerExtension extends ComposerExtension {
});
}
static finalizeSessionBeforeSending = ({session})=> {
static finalizeSessionBeforeSending = ({session}) => {
const body = session.draft().body;
const clean = body.replace(/<\/?spelling[^>]*>/g, '');
if (body !== clean) {
return session.changes.add({body: clean});
} else {
return Promise.resolve();
}
return Promise.resolve();
}
}

View file

@ -1,15 +1,17 @@
import fs from 'fs';
import path from 'path';
import AutoloadImagesExtension from '../lib/autoload-images-extension';
import AutoloadImagesStore from '../lib/autoload-images-store';
describe("AutoloadImagesExtension", ()=> {
describe("formatMessageBody", ()=> {
describe("AutoloadImagesExtension", () => {
describe("formatMessageBody", () => {
const scenarios = [];
const fixtures = path.resolve(path.join(__dirname, 'fixtures'));
fs.readdirSync(fixtures).forEach((filename)=> {
fs.readdirSync(fixtures).forEach((filename) => {
if (filename.endsWith('-in.html')) {
const name = filename.replace('-in.html', '');
scenarios.push({
name: name,
in: fs.readFileSync(path.join(fixtures, filename)).toString(),
@ -19,13 +21,15 @@ describe("AutoloadImagesExtension", ()=> {
});
scenarios.forEach((scenario)=> {
it(`should process ${scenario.name}`, ()=> {
it(`should process ${scenario.name}`, () => {
spyOn(AutoloadImagesStore, 'shouldBlockImagesIn').andReturn(true);
message = {
body: scenario.in
const message = {
body: scenario.in,
};
AutoloadImagesExtension.formatMessageBody({message});
expect(message.body == scenario.out).toBe(true);
expect(message.body === scenario.out).toBe(true);
});
});
});