Skip to content

Commit

Permalink
Rename 'tests/megadraft_test.js' to 'tests/components/MegadraftEditor…
Browse files Browse the repository at this point in the history
…_test.js'
  • Loading branch information
marcelometal committed Aug 19, 2016
1 parent 7a4694f commit a8c78c9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
1 change: 0 additions & 1 deletion mocha.opts
@@ -1,5 +1,4 @@
--compilers js:babel-core/register
--require ./tests/helpers/setup.js
--recursive
tests/*_test.js
tests/**/*_test.js
Expand Up @@ -11,17 +11,17 @@ import chai from "chai";
import sinon from "sinon";
import {Editor} from "draft-js";

import {MegadraftEditor} from "../src/Megadraft";
import Media from "../src/components/Media";
import {editorStateFromRaw} from "../src/utils";
import DEFAULT_PLUGINS from "../src/plugins/default";
import MegadraftEditor from "../../src/components/MegadraftEditor";
import Media from "../../src/components/Media";
import {editorStateFromRaw} from "../../src/utils";
import DEFAULT_PLUGINS from "../../src/plugins/default";


let expect = chai.expect;
let kba = function keyBindingAction() {};


describe("Megadraft Component", () => {
describe("MegadraftEditor Component", () => {
beforeEach(function() {
const INITIAL_CONTENT = {
"entityMap": {},
Expand Down

0 comments on commit a8c78c9

Please sign in to comment.